[vlc-devel] [PATCH] Mac OS X: fixes for contrib build

Christoph Seibert vlc-devel at christophseibert.de
Sun Jan 3 13:50:19 CET 2010


Fixed infinite make recursion on Mac OS X and added semicolon to fix syntax error
---
 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 && \
-- 
1.6.5.2




More information about the vlc-devel mailing list