diff options
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 | ||