diff options
author | Ron Yorston <rmy@pobox.com> | 2012-03-21 20:53:50 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2012-03-21 20:53:50 +0000 |
commit | f6bad5ef766b0447158e3de2f55c35f1f6cecb58 (patch) | |
tree | f5ec7ac45234c25794c97f87e9a6daa8a551e57c /shell/ash.c | |
parent | 72394258b6509b40e0fa08594ac86215a558dfd8 (diff) | |
parent | 8d0e0cdadf726beab28ccdc7d69738c1534e1f74 (diff) | |
download | busybox-w32-f6bad5ef766b0447158e3de2f55c35f1f6cecb58.tar.gz busybox-w32-f6bad5ef766b0447158e3de2f55c35f1f6cecb58.tar.bz2 busybox-w32-f6bad5ef766b0447158e3de2f55c35f1f6cecb58.zip |
Merge commit '8d0e0cdadf726beab28ccdc7d69738c1534e1f74' into merge
Conflicts:
include/platform.h
libbb/Kbuild.src
libbb/messages.c
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 93c582f73..28f988698 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -86,9 +86,9 @@ | |||
86 | # error "Do not even bother, ash will not run on NOMMU machine" | 86 | # error "Do not even bother, ash will not run on NOMMU machine" |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | //applet:IF_ASH(APPLET(ash, _BB_DIR_BIN, _BB_SUID_DROP)) | 89 | //applet:IF_ASH(APPLET(ash, BB_DIR_BIN, BB_SUID_DROP)) |
90 | //applet:IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, _BB_DIR_BIN, _BB_SUID_DROP, sh)) | 90 | //applet:IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, BB_DIR_BIN, BB_SUID_DROP, sh)) |
91 | //applet:IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, _BB_DIR_BIN, _BB_SUID_DROP, bash)) | 91 | //applet:IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, BB_DIR_BIN, BB_SUID_DROP, bash)) |
92 | 92 | ||
93 | //kbuild:lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o | 93 | //kbuild:lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o |
94 | //kbuild:lib-$(CONFIG_ASH_RANDOM_SUPPORT) += random.o | 94 | //kbuild:lib-$(CONFIG_ASH_RANDOM_SUPPORT) += random.o |
@@ -5195,6 +5195,8 @@ stoppedjobs(void) | |||
5195 | * Code for dealing with input/output redirection. | 5195 | * Code for dealing with input/output redirection. |
5196 | */ | 5196 | */ |
5197 | 5197 | ||
5198 | #undef EMPTY | ||
5199 | #undef CLOSED | ||
5198 | #define EMPTY -2 /* marks an unused slot in redirtab */ | 5200 | #define EMPTY -2 /* marks an unused slot in redirtab */ |
5199 | #define CLOSED -3 /* marks a slot of previously-closed fd */ | 5201 | #define CLOSED -3 /* marks a slot of previously-closed fd */ |
5200 | 5202 | ||