diff options
author | Matt Kraai <kraai@debian.org> | 2001-08-09 21:00:15 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-08-09 21:00:15 +0000 |
commit | d0b5be6da872097f46d66b21ec9557c264c7966a (patch) | |
tree | 52a9beafe6c2d9b6b57d01bd22103ff0f774c39e /chroot.c | |
parent | 2338d3176bdb6fb607a8ce81534e88522d8c516c (diff) | |
download | busybox-d0b5be6da872097f46d66b21ec9557c264c7966a.tar.gz |
Remove BB_SH define entirely.
Diffstat (limited to 'chroot.c')
-rw-r--r-- | chroot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ int chroot_main(int argc, char **argv) prog = *argv; execvp(*argv, argv); } else { -#if defined(BB_SH) && defined BB_FEATURE_SH_STANDALONE_SHELL +#if defined shell_main && defined BB_FEATURE_SH_STANDALONE_SHELL char shell[] = "/bin/sh"; char *shell_argv[2] = { shell, NULL }; applet_name = shell; |