diff options
author | Ciprian Dorin, Craciun <ciprian@volution.ro> | 2011-11-22 00:11:50 (GMT) |
---|---|---|
committer | Ciprian Dorin, Craciun <ciprian@volution.ro> | 2011-11-22 00:57:53 (GMT) |
commit | 209d85b9fac5ebaef63dd952ec3b4f79144f6f52 (patch) | |
tree | a67161a96f3958e4bb93913021f1542145c808a1 /src | |
parent | f3d13afdb18f5ab69c384cee2b9a140483e7e4e9 (diff) | |
download | Ninja-209d85b9fac5ebaef63dd952ec3b4f79144f6f52.zip Ninja-209d85b9fac5ebaef63dd952ec3b4f79144f6f52.tar.gz Ninja-209d85b9fac5ebaef63dd952ec3b4f79144f6f52.tar.bz2 |
Renamed `python` to `python2`.
Diffstat (limited to 'src')
-rw-r--r-- | src/browse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/browse.cc b/src/browse.cc index 2e74206..64a6bcb 100644 --- a/src/browse.cc +++ b/src/browse.cc @@ -46,7 +46,7 @@ void RunBrowsePython(State* /* state */, const char* ninja_command, // exec Python, telling it to run the program from stdin. const char* command[] = { - "python", "-", ninja_command, initial_target, NULL + "python2", "-", ninja_command, initial_target, NULL }; execvp(command[0], (char**)command); perror("ninja: execvp"); |