diff options
author | theuni <theuni-nospam-@xbmc.org> | 2012-06-01 15:04:17 -0400 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-08-08 18:53:39 -0400 |
commit | 3ca1ca2cdd33679a5a7de79168ebbf0b31f2724f (patch) | |
tree | 81c9229baff7bb4a90ab030edb709bb52bb9ab4f /lib | |
parent | d317ddaa3fa7eefd54631b5881239bb5542667b6 (diff) |
[droid] libid3tag: fix missing libz dependency
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libid3tag/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libid3tag/Makefile.in b/lib/libid3tag/Makefile.in index c4c4ba7220..b58f2c9d06 100644 --- a/lib/libid3tag/Makefile.in +++ b/lib/libid3tag/Makefile.in @@ -18,7 +18,7 @@ else $(SLIB): libid3tag/.libs/libid3tag.so $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared -fPIC -Wl,--unresolved-symbols=ignore-all -o $@ libid3tag/.libs/*.o \ `cat ../../xbmc/cores/DllLoader/exports/wrapper.def` \ - ../../xbmc/cores/DllLoader/exports/wrapper.o + ../../xbmc/cores/DllLoader/exports/wrapper.o -lz endif ifeq ($(findstring osx,$(ARCH)), osx) |