diff options
author | joerg <joerg> | 2006-02-02 14:28:17 +0000 |
---|---|---|
committer | joerg <joerg> | 2006-02-02 14:28:17 +0000 |
commit | 0e9e046b3bd9402c75cf5de95c7bdb7cba0b16d5 (patch) | |
tree | cfb23252fbbfb822fae0e47d36a8fcb485ae0f86 /mk | |
parent | 6488e6ba48f9128dc9c61485b32d50a70f64e702 (diff) | |
download | pkgsrc-0e9e046b3bd9402c75cf5de95c7bdb7cba0b16d5.tar.gz |
Fix unrar usage: the command to extract is 'x', without hyphen.
Diffstat (limited to 'mk')
-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) |