]> git.sesse.net Git - vlc/commitdiff
Mac OS X: fixes for contrib build
authorChristoph Seibert <vlc-devel@christophseibert.de>
Sun, 3 Jan 2010 12:50:19 +0000 (13:50 +0100)
committerFelix Paul Kühne <fkuehne@videolan.org>
Sun, 3 Jan 2010 13:14:51 +0000 (14:14 +0100)
Fixed infinite make recursion on Mac OS X and added semicolon to fix syntax error

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
extras/contrib/Makefile

index 73d132c4a8e27a9cede30e28b9cd97995652bb46..0b2402849da1f393e50e552c2a9237cc88b61a7a 100644 (file)
@@ -80,11 +80,11 @@ hosts/fat/.$(CONTRIBREV)-from-archs:
                exit 1 ; \
        fi
        # FIXME - Doing this without rerunning bootstrap & make would be nicer
-       ./bootstrap i686-apple-darwin10 && make && \
-       ./bootstrap x86_64-apple-darwin10 && make && \
+       ./bootstrap i686-apple-darwin10 && make using-bin && \
+       ./bootstrap x86_64-apple-darwin10 && make using-bin && \
        mkdir tmp;
        cp -R hosts/x86_64-apple-darwin10/ tmp;
-       (cd tmp/lib && find . -name "*.dylib" -or -name "*.a") | while read lib; do rm tmp/lib/$$lib \
+       (cd tmp/lib && find . -name "*.dylib" -or -name "*.a") | while read lib; do rm tmp/lib/$$lib; \
           lipo -create hosts/x86_64-apple-darwin10/lib/$$lib hosts/i686-apple-darwin10/lib/$$lib -output tmp/lib/$$lib; \
        done;
        rm -Rf hosts/fat && \