diff options
author | joerg <joerg@pkgsrc.org> | 2006-02-02 14:28:17 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-02-02 14:28:17 +0000 |
commit | 51e7c9bfd498af2b3120b31655888a74fb73204f (patch) | |
tree | cfb23252fbbfb822fae0e47d36a8fcb485ae0f86 /mk/scripts | |
parent | 5db6b92c0bf8abcf929698814a4ed8cf2500ed12 (diff) | |
download | pkgsrc-51e7c9bfd498af2b3120b31655888a74fb73204f.tar.gz |
Fix unrar usage: the command to extract is 'x', without hyphen.
Diffstat (limited to 'mk/scripts')
-rwxr-xr-x | mk/scripts/extract | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/scripts/extract b/mk/scripts/extract index c5af6d6e17e..909b1264900 100755 --- a/mk/scripts/extract +++ b/mk/scripts/extract @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: extract,v 1.16 2006/01/24 15:26:06 jlam Exp $ +# $NetBSD: extract,v 1.17 2006/02/02 14:28:17 joerg Exp $ # # Copyright (c) 2006 The NetBSD Foundation, Inc. # All rights reserved. @@ -272,7 +272,7 @@ zoo) rar) : ${EXTRACT_OPTS_RAR=-inul} - ${UNRAR} -x ${EXTRACT_OPTS_RAR} "$distfile" "$@" + ${UNRAR} x ${EXTRACT_OPTS_RAR} "$distfile" "$@" ;; jre-bin) |