diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-07 19:56:12 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-07 19:56:12 +0000 |
commit | 630a23be90c67205fbfbb7f5627980d788b183a1 (patch) | |
tree | f6222b724df32d95d9d931130ed597789842b09a | |
parent | 522bb0539347ca0ad8b43d97e5b766d4a4f135aa (diff) | |
download | portage-630a23be90c67205fbfbb7f5627980d788b183a1.tar.gz portage-630a23be90c67205fbfbb7f5627980d788b183a1.tar.bz2 portage-630a23be90c67205fbfbb7f5627980d788b183a1.zip |
Remove redunant quotes for bug #150381. This change is related to the shlex posix mode used to fix bug #14215.
svn path=/main/trunk/; revision=4613
-rwxr-xr-x | bin/emerge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge index c22d1430a..662c2dc0c 100755 --- a/bin/emerge +++ b/bin/emerge @@ -2740,7 +2740,7 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): rsync_opts.append(opt) for exclude in ("distfiles", "local", "packages"): - opt = "--exclude='/%s'" % exclude + opt = "--exclude=/%s" % exclude if opt not in rsync_opts: portage.writemsg(yellow("WARNING:") + \ " adding required option %s not included in " % opt + \ |