diff options
| author | apb <apb@NetBSD.org> | 2014-01-27 08:18:07 +0000 |
|---|---|---|
| committer | apb <apb@NetBSD.org> | 2014-01-27 08:18:07 +0000 |
| commit | 2987fc5669c0a6a654ecafdcda507047c4101824 (patch) | |
| tree | 5460e928f5223104a43dcb2d75e865d6a225ed76 /libexec | |
| parent | cc79db06d7179001bdb5ea6dd20ea7e713f5e3b4 (diff) | |
Use ${TOOL_GZIP} instead of just gzip in all Makefiles
outside */dist/* subdirectories.
When USE_PIGZGZIP=yes, bsd.own.mk sets TOOL_GZIP=${TOOL_PIGZ},
so there's no need to test USE_PIGZGZIP in these Makefiles.
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/httpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/httpd/Makefile b/libexec/httpd/Makefile index c15664a9ffc..822dabcbf52 100644 --- a/libexec/httpd/Makefile +++ b/libexec/httpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2013/10/16 10:04:26 he Exp $ +# $NetBSD: Makefile,v 1.18 2014/01/27 08:18:08 apb Exp $ # # $eterna: Makefile,v 1.30 2010/07/11 00:34:27 mrg Exp $ # @@ -83,7 +83,7 @@ export-distfile: find . -name .CVS | xargs rm -r; \ ); \ pax -wf ${TAR} ${BASE}; \ - gzip -c9 ${TAR} > ${TAR}.gz; \ + ${TOOL_GZIP} -c9 ${TAR} > ${TAR}.gz; \ bzip2 -9 ${TAR} @echo "Exported two files:" @echo ${TAR}.gz |
