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-w32-9d938732d0e613d97e59e37f8c251f945e0350ae.tar.gz busybox-w32-9d938732d0e613d97e59e37f8c251f945e0350ae.tar.bz2 busybox-w32-9d938732d0e613d97e59e37f8c251f945e0350ae.zip |
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) | |||
21 | bb_show_usage(); | 21 | bb_show_usage(); |
22 | } | 22 | } |
23 | 23 | ||
24 | if (!getenv("PATH")) { | ||
25 | setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin", 1); | ||
26 | } | ||
27 | |||
24 | while (--argc > 0) { | 28 | while (--argc > 0) { |
25 | argv++; | 29 | argv++; |
26 | if (strchr(*argv, '/')) { | 30 | if (strchr(*argv, '/')) { |