diff options
author | Marius Mauch <genone@gentoo.org> | 2006-05-06 13:23:02 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2006-05-06 13:23:02 +0000 |
commit | cf1c8be7f5eed1ef505c83da844ba202ebf79c1f (patch) | |
tree | 3753f17bb4342481313b8388008bf67dac9d5bfa | |
parent | 4f00ff24f016514576892586ddfeb15e906f295e (diff) | |
download | portage-cf1c8be7f5eed1ef505c83da844ba202ebf79c1f.tar.gz portage-cf1c8be7f5eed1ef505c83da844ba202ebf79c1f.tar.bz2 portage-cf1c8be7f5eed1ef505c83da844ba202ebf79c1f.zip |
make rsync variable messages a bit less inviting
svn path=/main/trunk/; revision=3325
-rwxr-xr-x | bin/emerge | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/emerge b/bin/emerge index 404e720d6..9cb7aa3c0 100755 --- a/bin/emerge +++ b/bin/emerge @@ -2564,7 +2564,7 @@ if myaction in ["sync","metadata"] and (not "--help" in myopts): # The below validation is not needed when using the above hardcoded # defaults. - portage.writemsg("Using PORTAGE_RSYNC_OPTS instead of hardcoded defaults\n") + portage.writemsg("Using PORTAGE_RSYNC_OPTS instead of hardcoded defaults\n", 1) rsync_opts.extend(portage.settings["PORTAGE_RSYNC_OPTS"].split()) for opt in ("--recursive", "--times"): @@ -2578,7 +2578,7 @@ if myaction in ["sync","metadata"] and (not "--help" in myopts): if opt not in rsync_opts: portage.writemsg(yellow("WARNING:") + \ " adding required option %s not included in " % opt + \ - "PORTAGE_RSYNC_OPTS (override with --exclude='!')\n") + "PORTAGE_RSYNC_OPTS (can be overridden with --exclude='!')\n") rsync_opts.append(opt) if portage.settings["RSYNC_TIMEOUT"] != "": |