diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-28 15:31:19 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-01-28 15:31:19 +0000 |
commit | 9d938732d0e613d97e59e37f8c251f945e0350ae (patch) | |
tree | 832217179f72130cfd5b08ab52fa4beab7d3792c /debianutils | |
parent | 4e1715f4b9377a17c222d2e2f1868577f9db05fc (diff) | |
download | busybox-9d938732d0e613d97e59e37f8c251f945e0350ae.tar.gz |
fix which-uses-default-path
Diffstat (limited to 'debianutils')
-rw-r--r-- | debianutils/which.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index a715a2664..79b2a4f83 100644 --- a/debianutils/which.c +++ b/debianutils/which.c @@ -21,6 +21,10 @@ int which_main(int argc, char **argv) bb_show_usage(); } + if (!getenv("PATH")) { + setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin", 1); + } + while (--argc > 0) { argv++; if (strchr(*argv, '/')) { |