aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chroot.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-08-09 21:00:15 +0000
committerMatt Kraai <kraai@debian.org>2001-08-09 21:00:15 +0000
commitd0b5be6da872097f46d66b21ec9557c264c7966a (patch)
tree52a9beafe6c2d9b6b57d01bd22103ff0f774c39e /coreutils/chroot.c
parent2338d3176bdb6fb607a8ce81534e88522d8c516c (diff)
downloadbusybox-w32-d0b5be6da872097f46d66b21ec9557c264c7966a.tar.gz
busybox-w32-d0b5be6da872097f46d66b21ec9557c264c7966a.tar.bz2
busybox-w32-d0b5be6da872097f46d66b21ec9557c264c7966a.zip
Remove BB_SH define entirely.
Diffstat (limited to 'coreutils/chroot.c')
-rw-r--r--coreutils/chroot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index 0440e46b9..de6a2ea50 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -48,7 +48,7 @@ int chroot_main(int argc, char **argv)
48 prog = *argv; 48 prog = *argv;
49 execvp(*argv, argv); 49 execvp(*argv, argv);
50 } else { 50 } else {
51#if defined(BB_SH) && defined BB_FEATURE_SH_STANDALONE_SHELL 51#if defined shell_main && defined BB_FEATURE_SH_STANDALONE_SHELL
52 char shell[] = "/bin/sh"; 52 char shell[] = "/bin/sh";
53 char *shell_argv[2] = { shell, NULL }; 53 char *shell_argv[2] = { shell, NULL };
54 applet_name = shell; 54 applet_name = shell;