diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-03 15:10:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-03 15:10:59 +0000 |
commit | b05ae433811a3221ba00585e87623b75fd0827ac (patch) | |
tree | 25ccf53ecaaf1c10ec4170317a3d9832dc41687a /mk/defaults | |
parent | 5e0f39a3c408705eb8748ed90978104fce564b81 (diff) | |
download | pkgsrc-b05ae433811a3221ba00585e87623b75fd0827ac.tar.gz |
Back out part of a change from revision 1.756 of bsd.pkg.mk. It was
a mistake to include "GZIP" as an ${OPSYS}-specific variable as there
is nothing ${OPSYS}-specific there to tune. Define GZIP in
defaults/mk.conf instead, and remove the definition from each of the
existing platform/${OPSYS}.mk files.
Diffstat (limited to 'mk/defaults')
-rw-r--r-- | mk/defaults/mk.conf | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/defaults/mk.conf b/mk/defaults/mk.conf index 09f55abb6e4..b17c36913ad 100644 --- a/mk/defaults/mk.conf +++ b/mk/defaults/mk.conf @@ -1,4 +1,4 @@ -# $NetBSD: mk.conf,v 1.37 2005/04/20 16:27:30 seb Exp $ +# $NetBSD: mk.conf,v 1.38 2005/05/03 15:10:59 jlam Exp $ # # A file providing defaults for pkgsrc and the packages collection. @@ -26,6 +26,11 @@ MANINSTALL?= maninstall catinstall # Possible: defined, not defined # Default: not defined +GZIP?= -9 +# default compression level when compressing files with gzip +# Possible: -[0-9], --fast, --best (see gzip(1)) +# Default: -9 + #MKCRYPTO= no # If not YES or yes, don't fetch, build or install crypto packages. # Possible: not defined, no |