summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam>2006-01-21 14:23:08 +0000
committerjlam <jlam>2006-01-21 14:23:08 +0000
commit948064c18659e736e359b63d80ba8e7d4af69de1 (patch)
tree9045ea755193b163777f5959b6733c1bc2255883 /mk
parent161a6d9382508ceb437e7404fef199c0e1c22284 (diff)
downloadpkgsrc-948064c18659e736e359b63d80ba8e7d4af69de1.tar.gz
unzip should be using EXTRACT_OPTS_ZIP, not *_ZOO.
Diffstat (limited to 'mk')
-rwxr-xr-xmk/scripts/extract5
1 files changed, 3 insertions, 2 deletions
diff --git a/mk/scripts/extract b/mk/scripts/extract
index ecb933e3dde..8ef3a3b577e 100755
--- a/mk/scripts/extract
+++ b/mk/scripts/extract
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: extract,v 1.6 2006/01/21 05:24:36 jlam Exp $
+# $NetBSD: extract,v 1.7 2006/01/21 14:23:08 jlam Exp $
#
# Copyright (c) 2006 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -213,7 +213,8 @@ zip)
if ${TEST} -n "$exclude_file"; then
set -- dummy `${CAT} "$exclude_file"`; shift
fi
- ${UNZIP} ${EXTRACT_OPTS_ZOO} "$distfile" $exclude_flag "$@"
+ echo ${UNZIP} ${EXTRACT_OPTS_ZOO} "$distfile" $exclude_flag "$@"
+ ${UNZIP} ${EXTRACT_OPTS_ZIP} "$distfile" $exclude_flag "$@"
;;
lha)