]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
libxslt: Update to remove python2 modules and disable static libraries
authorAdolf Belka <adolf.belka@ipfire.org>
Tue, 11 May 2021 19:16:39 +0000 (21:16 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 12 May 2021 10:38:26 +0000 (10:38 +0000)
- Add --without-python and --disable-static to the configure section
   python2 modules not required for libxslt use in IPFire
   disable build of static libraries
- Update rootfile

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/libxslt
lfs/libxslt

index be00b2426c2bb91047b57a039e024c8481d7dfa6..3c8d144a50d547cd345af2a6ba5a6a860851b135 100644 (file)
@@ -39,11 +39,6 @@ usr/lib/libxslt.so.1
 usr/lib/libxslt.so.1.1.28
 #usr/lib/pkgconfig/libexslt.pc
 #usr/lib/pkgconfig/libxslt.pc
-usr/lib/python2.7/site-packages/libxml2.pyc
-#usr/lib/python2.7/site-packages/libxslt.py
-#usr/lib/python2.7/site-packages/libxsltmod.a
-#usr/lib/python2.7/site-packages/libxsltmod.la
-usr/lib/python2.7/site-packages/libxsltmod.so
 #usr/lib/xsltConf.sh
 #usr/share/aclocal/libxslt.m4
 #usr/share/doc/libxslt-1.1.28
index 86ebee30e811c99ef9f05545ef9f4baa8576d98c..159956b1a48caab73ea54256b1c206bc44fd5eb2 100644 (file)
@@ -71,7 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
        $(UPDATE_AUTOMAKE)
-       cd $(DIR_APP) && ./configure --prefix=/usr
+       cd $(DIR_APP) && ./configure            \
+                       --prefix=/usr           \
+                       --disable-static        \
+                       --without-python
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)