summaryrefslogtreecommitdiff
path: root/ruby-runner.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-02-23 13:31:56 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-02-23 13:31:56 +0900
commit0ed3384fd463ff80f5e55f7d4c62338fb15337d5 (patch)
treeb61aa13e29fd195e142eff0e4dee4c61f6cec496 /ruby-runner.c
parentf85ca4c840611bd10df35b4d6ca5a976bc90d68e (diff)
downloadruby-0ed3384fd463ff80f5e55f7d4c62338fb15337d5.tar.gz
Revert "Prefer `exe/ruby` to execute from it"
This reverts commit c7b71af9e21b3f0b8fe413a3c20cf4bd633c40d0, as an example in bundler expects untouch PATH.
Diffstat (limited to 'ruby-runner.c')
-rw-r--r--ruby-runner.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/ruby-runner.c b/ruby-runner.c
index 7e0ed6e4b0..d41ba274c3 100644
--- a/ruby-runner.c
+++ b/ruby-runner.c
@@ -17,7 +17,7 @@ const char MJIT_HEADER[] = BUILDDIR "/" MJIT_MIN_HEADER;
#define STRINGIZE0(expr) #expr
static void
-insert_env_path(const char *envname, const char *paths, size_t size, int prepend, int add)
+insert_env_path(const char *envname, const char *paths, size_t size, int prepend)
{
const char *env = getenv(envname);
char c = 0;
@@ -28,9 +28,6 @@ insert_env_path(const char *envname, const char *paths, size_t size, int prepend
n = strlen(env);
while (n > 0 && env[n-1] == PATH_SEP) --n;
}
- else if (!add) {
- return;
- }
if (c) {
char *e = malloc(size+n+1);
size_t pos = 0;
@@ -59,7 +56,6 @@ int
main(int argc, char **argv)
{
static const char builddir[] = BUILDDIR;
- static const char exedir[] = BUILDDIR"/"STRINGIZE(RUBY_RUNNER_PATH);
static const char rubypath[] = BUILDDIR"/"STRINGIZE(RUBY_INSTALL_NAME);
static const char rubylib[] =
ABS_SRCDIR"/lib"
@@ -77,12 +73,11 @@ main(int argc, char **argv)
const char *rubyname = rubypath + dirsize;
char *arg0 = argv[0], *p;
- insert_env_path(LIBPATHENV, builddir, dirsize, 1, 1);
- insert_env_path("RUBYLIB", rubylib, sizeof(rubylib), 0, 1);
- insert_env_path("PATH", exedir, sizeof(exedir), 1, 0);
+ insert_env_path(LIBPATHENV, builddir, dirsize, 1);
+ insert_env_path("RUBYLIB", rubylib, sizeof(rubylib), 0);
#ifndef LOAD_RELATIVE
if (PRELOADENV[0] && stat(mjit_build_dir, &stbuf) == 0) {
- insert_env_path(PRELOADENV, mjit_build_dir, sizeof(mjit_build_dir), 1, 1);
+ insert_env_path(PRELOADENV, mjit_build_dir, sizeof(mjit_build_dir), 1);
setenv("MJIT_SEARCH_BUILD_DIR", "true", 0);
}
#endif