summaryrefslogtreecommitdiff
path: root/mk/scripts
diff options
context:
space:
mode:
authorwiz <wiz>2006-01-23 17:52:02 +0000
committerwiz <wiz>2006-01-23 17:52:02 +0000
commit53b27d580a4ded82e53c5e7695e0b7679b5ae673 (patch)
tree372bbbdfa1ce798af7bb2a4af751741d23a11227 /mk/scripts
parent52bafbaa9baf1eff1600f504b7bc94c3f5f167a9 (diff)
downloadpkgsrc-53b27d580a4ded82e53c5e7695e0b7679b5ae673.tar.gz
Handle *.ZIP the same way as *.zip -- fixes fonts/cyberbit-ttf extraction.
Diffstat (limited to 'mk/scripts')
-rwxr-xr-xmk/scripts/extract4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/scripts/extract b/mk/scripts/extract
index ddfb161ca79..db8db094f9b 100755
--- a/mk/scripts/extract
+++ b/mk/scripts/extract
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: extract,v 1.14 2006/01/21 19:26:09 jlam Exp $
+# $NetBSD: extract,v 1.15 2006/01/23 17:52:02 wiz Exp $
#
# Copyright (c) 2006 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -171,7 +171,7 @@ case "$distfile" in
_format=tar ;;
*.shar.gz|*.shar.bz2|*.shar.Z|*.shar|*.shr.gz|*.shr.bz2|*.shr.Z|*.shr)
_format=shar ;;
-*.zip) _format=zip ;;
+*.zip|*.ZIP) _format=zip ;;
*.lha|*.lzh) _format=lha ;;
*.Z|*.bz2|*.gz|*.z)
_format=compressed ;;