From: JINMEI Tatuya Date: Sat, 7 Jan 2012 21:51:30 +0000 (-0800) Subject: [805] inserted a separator ':' between LIBEXECPATH and original PATH X-Git-Tag: trac2351_base~304^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91b5b26bc39a66dc82eb3b863f7aa3264a3a436f;p=thirdparty%2Fkea.git [805] inserted a separator ':' between LIBEXECPATH and original PATH --- diff --git a/src/bin/bind10/bind10_src.py.in b/src/bin/bind10/bind10_src.py.in index c202e24314..1d435132e0 100755 --- a/src/bin/bind10/bind10_src.py.in +++ b/src/bin/bind10/bind10_src.py.in @@ -150,7 +150,7 @@ class ProcessInfo: # on construction (self.env). spawn_env = copy.deepcopy(os.environ) spawn_env.update(self.env) - spawn_env['PATH'] = LIBEXECPATH + spawn_env['PATH'] + spawn_env['PATH'] = LIBEXECPATH + ':' + spawn_env['PATH'] self.process = subprocess.Popen(self.args, stdin=subprocess.PIPE, stdout=spawn_stdout,