diff options
author | davilla <davilla@svn> | 2010-11-22 21:56:56 +0000 |
---|---|---|
committer | davilla <davilla@svn> | 2010-11-22 21:56:56 +0000 |
commit | 3579ad060b58bd162bd4947377912f73fdcc5c44 (patch) | |
tree | 739f127b284e1502477ab0f5f3ee8c9d5387cd7d /Makefile.in | |
parent | 716fc0c55ed458200152f0618087f7c749de1638 (diff) |
link to expat so loader will load it when libcpluff is loaded
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35418 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index af151f4c5b..d7f28e4742 100644 --- a/Makefile.in +++ b/Makefile.in @@ -280,9 +280,9 @@ lib/cpluff/libcpluff/.libs/libcpluff.a: force system/libcpluff-$(ARCH).so: lib/cpluff/libcpluff/.libs/libcpluff.a ifeq ($(findstring osx,$(ARCH)), osx) ifeq ($(ARCH), powerpc-osx) - ld -all_load -bundle -flat_namespace -undefined suppress -arch @ARCHTYPE@ -lbundle1.o -o $@ $< + ld -all_load -bundle -flat_namespace -undefined suppress -arch @ARCHTYPE@ -L/opt/local/lib -lexpat -lbundle1.o -o $@ $< else - ld -all_load -bundle -flat_namespace -undefined suppress -arch @ARCHTYPE@ -o $@ $< + ld -all_load -bundle -flat_namespace -undefined suppress -arch @ARCHTYPE@ -L/opt/local/lib -lexpat -o $@ $< endif else cp lib/cpluff/libcpluff/.libs/libcpluff.so $@ |