1234567891011121314151617181920212223 |
- $OpenBSD: patch-src_extension_implementation_script_cpp,v 1.5 2017/02/24 08:05:34 landry Exp $
- --- src/extension/implementation/script.cpp.orig Mon Jan 2 10:44:59 2017
- +++ src/extension/implementation/script.cpp Tue Jan 24 22:01:33 2017
- @@ -83,14 +83,14 @@ void Script::pump_events (void) {
- the given interpreter to a custom one per user.
- */
- Script::interpreter_t const Script::interpreterTab[] = {
- - {"perl", "perl-interpreter", "perl" },
- + {"perl", "perl-interpreter", "/usr/bin/perl" },
- #ifdef WIN32
- {"python", "python-interpreter", "pythonw" },
- #else
- - {"python", "python-interpreter", "python" },
- + {"python", "python-interpreter", "${MODPY_BIN}" },
- #endif
- - {"ruby", "ruby-interpreter", "ruby" },
- - {"shell", "shell-interpreter", "sh" },
- + {"ruby", "ruby-interpreter", "${RUBY}" },
- + {"shell", "shell-interpreter", "/bin/sh" },
- { NULL, NULL, NULL }
- };
-
|