diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-09 13:55:24 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-09 13:56:29 -0400 |
commit | 54869eef9fdca8dc1cba28c592115088ffb79f7f (patch) | |
tree | 076fe38a0b33e301100cfb70bbade3656e27234d /Makefile.in | |
parent | 881cf26b8b1716c3ceda9a3fd7955fb88ad0c86f (diff) |
cpluff: don't explicitly link libdl
It's not needed and breaks bsd build
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 10d5be970c..856a341def 100644 --- a/Makefile.in +++ b/Makefile.in @@ -287,7 +287,7 @@ ifeq ($(findstring osx,@ARCH@), osx) else $(CXX) $(LDFLAGS) -shared -o $@ -Wl,--whole-archive $< \ -Wl,--no-whole-archive \ - `cat xbmc/cores/DllLoader/exports/wrapper.def` xbmc/cores/DllLoader/exports/wrapper.o -lexpat -ldl + `cat xbmc/cores/DllLoader/exports/wrapper.def` xbmc/cores/DllLoader/exports/wrapper.o -lexpat endif exports: xbmc/cores/DllLoader/exports/exports.a xbmc/cores/DllLoader/exports/util/exports_utils.a |