Commit 3878a327 authored by Christoph Seibert's avatar Christoph Seibert Committed by Felix Paul Kühne

Mac OS X: fixes for contrib build

Fixed infinite make recursion on Mac OS X and added semicolon to fix syntax error
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent 24e39b70
...@@ -80,11 +80,11 @@ hosts/fat/.$(CONTRIBREV)-from-archs: ...@@ -80,11 +80,11 @@ hosts/fat/.$(CONTRIBREV)-from-archs:
exit 1 ; \ exit 1 ; \
fi fi
# FIXME - Doing this without rerunning bootstrap & make would be nicer # FIXME - Doing this without rerunning bootstrap & make would be nicer
./bootstrap i686-apple-darwin10 && make && \ ./bootstrap i686-apple-darwin10 && make using-bin && \
./bootstrap x86_64-apple-darwin10 && make && \ ./bootstrap x86_64-apple-darwin10 && make using-bin && \
mkdir tmp; mkdir tmp;
cp -R hosts/x86_64-apple-darwin10/ 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; \ lipo -create hosts/x86_64-apple-darwin10/lib/$$lib hosts/i686-apple-darwin10/lib/$$lib -output tmp/lib/$$lib; \
done; done;
rm -Rf hosts/fat && \ rm -Rf hosts/fat && \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment