From 35e08f910f76066612a26893e0a4a689718a2c97 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 6 Jul 2021 02:02:28 +0300 Subject: [PATCH] expat: minor changes --- extra/expat/build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/extra/expat/build b/extra/expat/build index 6daf22f8..903df67e 100755 --- a/extra/expat/build +++ b/extra/expat/build @@ -1,7 +1,14 @@ #!/bin/sh -e ./configure \ - --prefix=/usr + --prefix=/usr \ + --without-xmlwf \ + --without-examples \ + --without-tests \ + --without-docbook make make DESTDIR="$1" install + +# Remove documentation (Changelogs, etc). +rm -rf "$1/usr/share"