diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-21 15:43:45 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-21 15:43:45 +0000 |
commit | 581c28e9369092a41a24fb86eb0b7c9d63379b84 (patch) | |
tree | 06d553f498c0da1c480fb6e69c2f0774d4d69cc4 | |
parent | ca07d1b8d759485b188627733a4bad15ebe855ac (diff) | |
download | portage-581c28e9369092a41a24fb86eb0b7c9d63379b84.tar.gz portage-581c28e9369092a41a24fb86eb0b7c9d63379b84.tar.bz2 portage-581c28e9369092a41a24fb86eb0b7c9d63379b84.zip |
Make --skipfirst imply --resume.
svn path=/main/trunk/; revision=2425
-rwxr-xr-x | bin/emerge | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/emerge b/bin/emerge index c52c3caa7..5ddc92cea 100755 --- a/bin/emerge +++ b/bin/emerge @@ -350,6 +350,9 @@ if ("--searchdesc" in myopts): if ("getbinpkg" in portage.features): myopts.append("--getbinpkg") +if "--skipfirst" in myopts and "--resume" not in myopts: + myopts.append("--resume") + if ("--getbinpkgonly" in myopts) and not ("--usepkgonly" in myopts): myopts.append("--usepkgonly") |