aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debianutils/which.c4
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, '/')) {