diff options
author | jlam <jlam> | 2006-01-21 14:40:31 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-01-21 14:40:31 +0000 |
commit | ca4f7dfb03fd0255611ca34684888d9b538b91f7 (patch) | |
tree | e1d143b97a685667a3d66e1b908dd729bffc3593 /mk | |
parent | 00217493f0b6df037be587e85244227c06a66848 (diff) | |
download | pkgsrc-ca4f7dfb03fd0255611ca34684888d9b538b91f7.tar.gz |
unzip uses UNZIP as a special environment variable to denote the options
to pass to unzip. While this is stupid, it's still the reality, so we
must not set UNZIP in the environment when calling unzip. Rename "UNZIP"
to "UNZIP_CMD" to point to the path to the unzip binary.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/tools/defaults.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/defaults.mk b/mk/tools/defaults.mk index 9832fb2516b..98cd42c6e5a 100644 --- a/mk/tools/defaults.mk +++ b/mk/tools/defaults.mk @@ -1,4 +1,4 @@ -# $NetBSD: defaults.mk,v 1.43 2006/01/08 23:00:00 jlam Exp $ +# $NetBSD: defaults.mk,v 1.44 2006/01/21 14:40:31 jlam Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -129,7 +129,7 @@ _TOOLS_VARNAME.tr= TR _TOOLS_VARNAME.true= TRUE _TOOLS_VARNAME.tsort= TSORT _TOOLS_VARNAME.unrar= UNRAR -_TOOLS_VARNAME.unzip= UNZIP +_TOOLS_VARNAME.unzip= UNZIP_CMD _TOOLS_VARNAME.unzoo= UNZOO _TOOLS_VARNAME.wc= WC _TOOLS_VARNAME.wish= WISH |