From: Zac Medico Date: Mon, 30 Jul 2007 06:57:42 +0000 (-0000) Subject: For bug #184774, put lha's -q option last since otherwise the option parser now requi... X-Git-Tag: v2.1.2.11~14 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9846c4f9f4281844c90ba6858a88b4dba70ddcce;p=portage.git For bug #184774, put lha's -q option last since otherwise the option parser now requires level 0, 1, or 2 to be specified. (branches/2.1.2 r7359) svn path=/main/branches/2.1.2.9/; revision=7505 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 18c946840..9eb0a4f87 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -453,7 +453,7 @@ unpack() { unrar x -idq -o+ "${srcdir}/${x}" || die "$myfail" ;; LHa|LHA|lha|lzh) - lha xqf "${srcdir}/${x}" || die "$myfail" + lha xfq "${srcdir}/${x}" || die "$myfail" ;; a|deb) ar x "${srcdir}/${x}" || die "$myfail"