summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-07 19:56:12 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-07 19:56:12 +0000
commit630a23be90c67205fbfbb7f5627980d788b183a1 (patch)
treef6222b724df32d95d9d931130ed597789842b09a /bin
parent522bb0539347ca0ad8b43d97e5b766d4a4f135aa (diff)
downloadportage-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
Diffstat (limited to 'bin')
-rwxr-xr-xbin/emerge2
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 + \