diff options
author | fuzzard <fuzzard@kodi.tv> | 2021-11-23 15:52:45 +1000 |
---|---|---|
committer | fuzzard <fuzzard@kodi.tv> | 2021-11-23 16:48:34 +1000 |
commit | 0f4fc7d69bceaced6e445189be942377e4298a13 (patch) | |
tree | 2f5864c7414f015039bce64869bf021dd8f41e8a /tools | |
parent | 069303a0b611a60ca1373bed6cccefe3264d1afb (diff) |
[tools/depends][target] libxslt explicitly provide libxml2 include/lib location
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/libxslt/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/depends/target/libxslt/Makefile b/tools/depends/target/libxslt/Makefile index af14c43802..b1b02f0566 100644 --- a/tools/depends/target/libxslt/Makefile +++ b/tools/depends/target/libxslt/Makefile @@ -9,7 +9,12 @@ ARCHIVE=$(SOURCE).tar.gz # configuration settings CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \ - ./configure --prefix=$(PREFIX) --without-python --disable-shared --with-debug --with-debugger --with-mem-debug --with-libxml-prefix=$(PREFIX) + ./configure --prefix=$(PREFIX) --without-python --disable-shared \ + --with-debug --with-debugger --with-mem-debug \ + --with-libxml-prefix=$(PREFIX) \ + --with-libxml-libs-prefix=$(PREFIX)/lib \ + --with-libxml-include-prefix=$(PREFIX)/include/libxml2 + LIBDYLIB=$(PLATFORM)/$(LIBNAME)/.libs/$(LIBNAME).a |