mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
413d927150
Reworks: * Remove fetchpatch * Remove gdl (jtojnar) * gtkspell -> gspell (jtojnar) * Add pillow to fix jpg export (jtojnar) * Remove double-conversion, add substituteInPlace (jtojnar)
18 lines
963 B
Diff
18 lines
963 B
Diff
diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp
|
|
index bc6c0ed845..181467834d 100644
|
|
--- a/src/extension/implementation/script.cpp
|
|
+++ b/src/extension/implementation/script.cpp
|
|
@@ -82,10 +82,10 @@ const std::map<std::string, Script::interpreter_t> Script::interpreterTab = {
|
|
{ "python", {"python-interpreter", {"pythonw" }}},
|
|
#elif defined __APPLE__
|
|
{ "perl", {"perl-interpreter", {"perl" }}},
|
|
- { "python", {"python-interpreter", {"python3" }}},
|
|
+ { "python", {"python-interpreter", {"@python3@" }}},
|
|
#else
|
|
{ "perl", {"perl-interpreter", {"perl" }}},
|
|
- { "python", {"python-interpreter", {"python3", "python" }}},
|
|
+ { "python", {"python-interpreter", {"@python3@" }}},
|
|
#endif
|
|
{ "python2", {"python2-interpreter", {"python2", "python" }}},
|
|
{ "ruby", {"ruby-interpreter", {"ruby" }}},
|