Fix unrar usage: the command to extract is 'x', without hyphen.
This commit is contained in:
parent
b7a4a002b1
commit
d9221c21a4
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue