diff options
author | joerg <joerg@pkgsrc.org> | 2008-09-22 20:19:18 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-09-22 20:19:18 +0000 |
commit | 484642077eb481f4fb6989b1d6822a8cffe69516 (patch) | |
tree | 243f042ab6abd4a17cf3f6c5103884e7d5620182 /archivers | |
parent | a50f4eba0ed1a1bf7ce35ec97454b48e17bb3335 (diff) | |
download | pkgsrc-484642077eb481f4fb6989b1d6822a8cffe69516.tar.gz |
Explicitly disable building the shared libarchive. This fails to link
on HP-UX against the static libz.a used if the system doesn't have
a native version. It also reduces build time in other cases.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bsdtar/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/bsdtar/Makefile b/archivers/bsdtar/Makefile index 3cbafccea5c..e70842ac72b 100644 --- a/archivers/bsdtar/Makefile +++ b/archivers/bsdtar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2008/07/14 14:56:50 joerg Exp $ +# $NetBSD: Makefile,v 1.11 2008/09/22 20:19:18 joerg Exp $ # DISTNAME= bsdtar-2.5.5 @@ -36,7 +36,7 @@ FILESDIR.bzip2?= ${.CURDIR}/../../archivers/bzip2/files FILESDIR.libarchive?= ${.CURDIR}/../../archivers/libarchive/files FILESDIR.zlib?= ${.CURDIR}/../../devel/zlib/files -CONFIGURE_ARGS+= --enable-bsdtar=static +CONFIGURE_ARGS+= --enable-bsdtar=static --disable-shared INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 |