diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-07-22 20:56:19 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-07-22 20:56:19 +0000 |
commit | 820a9325cde73e72c3f87045e5f91de292807ea2 (patch) | |
tree | c475d33643462765ad3aeb46759a78c05290fe3e | |
parent | 9182a4024b8e4b82a0b5350d80a5268e7a7790ee (diff) | |
download | portage-820a9325cde73e72c3f87045e5f91de292807ea2.tar.gz portage-820a9325cde73e72c3f87045e5f91de292807ea2.tar.bz2 portage-820a9325cde73e72c3f87045e5f91de292807ea2.zip |
For bug #184774, put lha's -q option last since otherwise the option parser now requires level 0, 1, or 2 to be specified.
svn path=/main/trunk/; revision=7358
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 6442ec4ff..5f271524b 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -378,7 +378,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" |