diff options
author | S. Davilla <davilla@4pi.com> | 2011-05-31 14:13:02 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2011-05-31 14:13:21 -0400 |
commit | 4ef02ed5f76fd107046c63c7274526ed3e89f6e6 (patch) | |
tree | bea9b1e0477d24c10618f6a735164e206f2b503e | |
parent | c2ce961aefe815b08c009b5e520abfbc15696272 (diff) |
[osx/ios] fixed, gettext cannot handle make -j > 1 under ios
-rw-r--r-- | tools/darwin/depends/gettext/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/darwin/depends/gettext/Makefile b/tools/darwin/depends/gettext/Makefile index d2b5a55769..24eefa5f41 100644 --- a/tools/darwin/depends/gettext/Makefile +++ b/tools/darwin/depends/gettext/Makefile @@ -34,7 +34,7 @@ $(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE) cd $(SOURCE); $(CONFIGURE) $(LIBDYLIB): $(SOURCE) - make -j $(MAKE_JOBS) -C $(SOURCE) + make -j 1 -C $(SOURCE) .installed: make -C $(SOURCE) install |