Oops. Forgot an ifdef

-Erik
This commit is contained in:
Eric Andersen 2000-07-28 15:19:30 +00:00
parent a5716d3029
commit 1428c4f136
3 changed files with 6 additions and 0 deletions

2
lash.c
View File

@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l)
strcat(local_pending_command, " "); strcat(local_pending_command, " ");
} }
break; break;
#ifdef BB_FEATURE_SH_ENVIRONMENT
case 'x': case 'x':
showXtrace = TRUE; showXtrace = TRUE;
break; break;
#endif
default: default:
usage(shell_usage); usage(shell_usage);
} }

2
sh.c
View File

@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l)
strcat(local_pending_command, " "); strcat(local_pending_command, " ");
} }
break; break;
#ifdef BB_FEATURE_SH_ENVIRONMENT
case 'x': case 'x':
showXtrace = TRUE; showXtrace = TRUE;
break; break;
#endif
default: default:
usage(shell_usage); usage(shell_usage);
} }

View File

@ -1414,9 +1414,11 @@ int shell_main(int argc_l, char **argv_l)
strcat(local_pending_command, " "); strcat(local_pending_command, " ");
} }
break; break;
#ifdef BB_FEATURE_SH_ENVIRONMENT
case 'x': case 'x':
showXtrace = TRUE; showXtrace = TRUE;
break; break;
#endif
default: default:
usage(shell_usage); usage(shell_usage);
} }