summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2006-01-24 15:26:06 +0000
committerjlam <jlam@pkgsrc.org>2006-01-24 15:26:06 +0000
commit03451a917b7aa9f291a516b3e13c0ee6bd8d2a7e (patch)
tree23b11164d66a8646c41866be91e644f695a5cb06 /mk
parenta03e764d56bbff3ce646ea42c93c46ebd42f3ba0 (diff)
downloadpkgsrc-03451a917b7aa9f291a516b3e13c0ee6bd8d2a7e.tar.gz
Ensure that decompress_cat and tarprog always have vaild default values
in the case where the user makes bad option choices on the command line.
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 db8db094f9b..c5af6d6e17e 100755
--- a/mk/scripts/extract
+++ b/mk/scripts/extract
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: extract,v 1.15 2006/01/23 17:52:02 wiz Exp $
+# $NetBSD: extract,v 1.16 2006/01/24 15:26:06 jlam Exp $
#
# Copyright (c) 2006 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -146,6 +146,7 @@ case "$extract_using" in
/*tar|/*pax) tarprog="$extract_using" ;;
*tar) tarprog="${TAR}" ;;
*pax) tarprog="${PAX}" ;;
+*) tarprog="${TAR}" ;;
esac
if ${TEST} -n "$exclude_file" -a ! -f "$exclude_file"; then
@@ -162,7 +163,7 @@ case "$distfile" in
*.gz|*.tgz|*.z) decompress_cat="${GZCAT}" ;;
*.bz2|*.tbz|*.tbz2) decompress_cat="${BZCAT}" ;;
*.Z) decompress_cat="${GZCAT}" ;;
--) decompress_cat="${CAT}" ;;
+*) decompress_cat="${CAT}" ;;
esac
# Derive the format of the archive based on the file extension.