diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-28 15:19:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-28 15:19:30 +0000 |
commit | 1428c4f13679935682a7c0d6d8193499afe20284 (patch) | |
tree | c46257fc4a027943138c78686946db26b4cd754c | |
parent | a5716d302940da0391fec614abc91e5c00ff8781 (diff) | |
download | busybox-1428c4f13679935682a7c0d6d8193499afe20284.tar.gz |
Oops. Forgot an ifdef
-Erik
-rw-r--r-- | lash.c | 2 | ||||
-rw-r--r-- | sh.c | 2 | ||||
-rw-r--r-- | shell/lash.c | 2 |
3 files changed, 6 insertions, 0 deletions
@@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l) strcat(local_pending_command, " "); } break; +#ifdef BB_FEATURE_SH_ENVIRONMENT case 'x': showXtrace = TRUE; break; +#endif default: usage(shell_usage); } @@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l) strcat(local_pending_command, " "); } break; +#ifdef BB_FEATURE_SH_ENVIRONMENT case 'x': showXtrace = TRUE; break; +#endif default: usage(shell_usage); } diff --git a/shell/lash.c b/shell/lash.c index 836fc9bab..4727e9b46 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l) strcat(local_pending_command, " "); } break; +#ifdef BB_FEATURE_SH_ENVIRONMENT case 'x': showXtrace = TRUE; break; +#endif default: usage(shell_usage); } |