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, " ");
}
break;
#ifdef BB_FEATURE_SH_ENVIRONMENT
case 'x':
showXtrace = TRUE;
break;
#endif
default:
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, " ");
}
break;
#ifdef BB_FEATURE_SH_ENVIRONMENT
case 'x':
showXtrace = TRUE;
break;
#endif
default:
usage(shell_usage);
}

View File

@ -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);
}