diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-07-28 18:00:12 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-28 19:02:41 +0200 |
commit | 9252addf55b176714eabbf0043e4dbfba2bc679f (patch) | |
tree | 523417c06f91797ec728002ecb0759676b23843d | |
parent | 07141434e0ef2e2ffcd1ba7c8a1d9d26a8d00453 (diff) | |
download | serenity-9252addf55b176714eabbf0043e4dbfba2bc679f.zip |
Ports: Make libxml2 work when Python is installed
Building libxml2 fails when Python was previously installed.
-rwxr-xr-x | Ports/libxml2/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/libxml2/package.sh b/Ports/libxml2/package.sh index dfc4bed575..bad27efe8c 100755 --- a/Ports/libxml2/package.sh +++ b/Ports/libxml2/package.sh @@ -5,7 +5,7 @@ version="2.9.12" files="ftp://xmlsoft.org/libxml2/libxml2-${version}.tar.gz libxml2-${version}.tar.gz c8d6681e38c56f172892c85ddc0852e1fd4b53b4209e7f4ebf17f7e2eae71d92" auth_type=sha256 depends="libiconv" -configopts="--prefix=${SERENITY_INSTALL_ROOT}/usr/local" +configopts="--prefix=${SERENITY_INSTALL_ROOT}/usr/local --without-python" install() { # Leave out DESTDIR - otherwise the prefix breaks |