diff options
author | wiz <wiz@pkgsrc.org> | 2009-08-25 11:56:34 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-08-25 11:56:34 +0000 |
commit | 8c5134dbe00f3188d5832b193a30e30ca7a6ce45 (patch) | |
tree | d305187ea667e2c134a9ba020eeef89d11ad7890 /mk/extract | |
parent | 8c517d92ba12902e7ea6dde033394e1cccc22aa6 (diff) | |
download | pkgsrc-8c5134dbe00f3188d5832b193a30e30ca7a6ce45.tar.gz |
Change default for zip extraction to leave files as they are.
Previously, zip extraction by default converted to lower case.
Fix some packages that need it and remove -L from some packages
that manually set it.
Diffstat (limited to 'mk/extract')
-rwxr-xr-x | mk/extract/extract | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/extract/extract b/mk/extract/extract index a5893f00dc8..51c08fbafd0 100755 --- a/mk/extract/extract +++ b/mk/extract/extract @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: extract,v 1.9 2009/07/08 13:27:52 minskim Exp $ +# $NetBSD: extract,v 1.10 2009/08/25 11:56:35 wiz Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # All rights reserved. @@ -298,7 +298,7 @@ shar) ;; zip) - : ${EXTRACT_OPTS_ZIP=-Laqo} + : ${EXTRACT_OPTS_ZIP=-aqo} ${TEST} "$exclude" = "no" || exclude_flag="-x" if ${TEST} -n "$exclude_file"; then set -- dummy `${CAT} "$exclude_file"`; shift |