[vlc-devel] commit: Mac OS X: fixes for contrib build (Christoph Seibert )
git version control
git at videolan.org
Sun Jan 3 14:14:51 CET 2010
vlc | branch: master | Christoph Seibert <vlc-devel at christophseibert.de> | Sun Jan 3 13:50:19 2010 +0100| [3878a327a72e95c466f00ebab38ff25def137e0d] | committer: 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: Felix Paul Kühne <fkuehne at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3878a327a72e95c466f00ebab38ff25def137e0d
---
extras/contrib/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/extras/contrib/Makefile b/extras/contrib/Makefile
index 73d132c..0b24028 100644
--- a/extras/contrib/Makefile
+++ b/extras/contrib/Makefile
@@ -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 && \
More information about the vlc-devel
mailing list