aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gmail.com>2015-02-08 22:55:51 -0800
committerTim Harder <radhermit@gmail.com>2015-02-08 22:55:51 -0800
commita5a7bf5c994bdd6cc6f9bf0c9875833c5070c058 (patch)
tree14c1f71e643774850788e3193f71511c76574173
parentpmerge: remove unnecessary option defaults (diff)
downloadpkgcore-a5a7bf5c994bdd6cc6f9bf0c9875833c5070c058.tar.gz
pkgcore-a5a7bf5c994bdd6cc6f9bf0c9875833c5070c058.tar.bz2
pkgcore-a5a7bf5c994bdd6cc6f9bf0c9875833c5070c058.zip
pmerge: change --with-built-depends to --with-bdeps to match portage
We'll try to be somewhat memory friendly for people switching between the two for now.
-rw-r--r--pkgcore/scripts/pmerge.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgcore/scripts/pmerge.py b/pkgcore/scripts/pmerge.py
index f10bf37c..64a8d43e 100644
--- a/pkgcore/scripts/pmerge.py
+++ b/pkgcore/scripts/pmerge.py
@@ -114,8 +114,8 @@ resolution_options.add_argument(
"a depends on b, and b depends on a, with neither built is an "
"example.")
resolution_options.add_argument(
- '-B', '--with-built-depends', action='store_true',
- help="whether or not to process build depends for pkgs that "
+ '--with-bdeps', action='store_true',
+ help="whether or not to process build dependencies for pkgs that "
"are already built; defaults to ignoring them")
resolution_options.add_argument(
'-O', '--nodeps', action='store_true',
@@ -520,7 +520,7 @@ def main(options, out, err):
installed_repos.repositories, source_repos.repositories,
verify_vdb=options.deep, nodeps=options.nodeps,
drop_cycles=options.ignore_cycles, force_replace=options.replace,
- process_built_depends=options.with_built_depends, **extra_kwargs)
+ process_built_depends=options.with_bdeps, **extra_kwargs)
if options.preload_vdb_state:
out.write(out.bold, ' * ', out.reset, 'Preloading vdb... ')