From: Zac Medico Date: Sat, 7 Oct 2006 19:56:12 +0000 (-0000) Subject: Remove redunant quotes for bug #150381. This change is related to the shlex posix... X-Git-Tag: v2.1.2~692 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=630a23be90c67205fbfbb7f5627980d788b183a1;p=portage.git 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 --- 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 + \