diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-01-03 17:53:14 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-01-03 17:53:14 +0000 |
commit | 9620b6a4335efbb5741942b53b2c6bbe3980ec4a (patch) | |
tree | 892c43d6baf651e2eb7fdbd01cd97a1aa606efd2 /pkgtools/pkg_install | |
parent | b26a22b6783e67841662a463bb0b60f82ebc4089 (diff) | |
download | pkgsrc-9620b6a4335efbb5741942b53b2c6bbe3980ec4a.tar.gz |
Pass --without-lz4 to libarchive bootstrap, avoids issues on Gentoo where
the native lz4 is found.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index 53a4834fd54..02aab8921f8 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.218 2016/06/21 12:23:01 joerg Exp $ +# $NetBSD: Makefile,v 1.219 2017/01/03 17:53:14 jperkin Exp $ # Notes to package maintainers: # @@ -213,9 +213,9 @@ pre-configure: ${CONFIG_SHELL} ${CONFIG_SHELL_FLAGS} ./configure \ --disable-bsdcpio --disable-bsdtar --disable-shared \ --disable-dependency-tracking --without-expat \ - --disable-maintainer-mode \ + --disable-maintainer-mode \ --without-iconv --without-lzo2 --without-nettle \ - --without-xml2 \ + --without-xml2 --without-lz4 \ ${LIBARCHIVE_CONFIGURE_ARGS} cd ${WRKDIR}/libarchive && ${BUILD_MAKE_CMD} .endif |