Browse Source

[805] inserted a separator ':' between LIBEXECPATH and original PATH

JINMEI Tatuya 13 years ago
parent
commit
91b5b26bc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/bind10/bind10_src.py.in

+ 1 - 1
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,