diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-06 05:03:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-06 05:03:36 +0000 |
commit | 793aa839cff522bf30c5e8302c4e4f1c140ef872 (patch) | |
tree | 42a0ea25543af32695f7491d6338624b820803fc | |
parent | 2c9a7a40f4f416200b6a00d0df6c7f1a8a117882 (diff) | |
download | portage-793aa839cff522bf30c5e8302c4e4f1c140ef872.tar.gz portage-793aa839cff522bf30c5e8302c4e4f1c140ef872.tar.bz2 portage-793aa839cff522bf30c5e8302c4e4f1c140ef872.zip |
unpack rar files with -o+ to force overwriting #146508 by Paul Bredbury
svn path=/main/trunk/; revision=4413
-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 abfc898cf..f9d4b5bea 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -406,7 +406,7 @@ unpack() { fi ;; RAR|rar) - unrar x -idq "${srcdir}/${x}" || die "$myfail" + unrar x -idq -o+ "${srcdir}/${x}" || die "$myfail" ;; LHa|LHA|lha|lzh) lha xqf "${srcdir}/${x}" || die "$myfail" |