Change-python-to-python3
authorqinxialei <xialeiqin@gmail.com>
Thu, 28 Jan 2021 19:35:22 +0000 (19:35 +0000)
committerRicardo Ribalda Delgado <ricardo@ribalda.com>
Thu, 28 Jan 2021 19:35:22 +0000 (19:35 +0000)
Change python to python3

Gbp-Pq: Name Change-python-to-python3.patch

src/gn/exec_process_unittest.cc

index 5ca0605f8b76b069506447b078a6b13147cb8c34..599892d3867d09a19c0b6c2e1ceaac2cfccef9fa 100644 (file)
@@ -33,7 +33,7 @@ bool ExecPython(const std::string& command,
   args.push_back(L"-c");
   args.push_back(base::UTF8ToUTF16(command));
 #else
-  args.push_back("python");
+  args.push_back("python3");
   args.push_back("-c");
   args.push_back(command);
 #endif