diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-01-26 20:30:30 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-01-26 20:30:30 +0100 |
commit | 29cf411ae13383cf7481abd269dd54b2b137c466 (patch) | |
tree | e6a6061905e222b220272663269f54cc83e698ba | |
parent | 2653a1169377915c07081418f7add27753daf3ec (diff) |
Fix the libffi build procedure for Mac OS X.
darcs-hash:f1894364e045b4f60ef2b1155f9675b1372f1ae4
-rw-r--r-- | Objective-C/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objective-C/GNUmakefile b/Objective-C/GNUmakefile index 124f2a8..50ff9ab 100644 --- a/Objective-C/GNUmakefile +++ b/Objective-C/GNUmakefile @@ -76,7 +76,7 @@ obj/%.o: %.m endif ../libffi/.libs/libffi.a: - (cd ../libffi && sh ./configure && make) + (cd ../libffi && chmod +x ltconfig && sh ./configure && make) libffi_clean: -make -C ../libffi distclean |