Changeset 1542 in kBuild
- Timestamp:
- Apr 22, 2008 1:20:45 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/env.sh
r1531 r1542 459 459 # The environment is in place, now take the requested action. 460 460 # 461 MY_RC=0 461 462 if test -n "${VAR_OPT}"; then 462 463 # Echo variable values or variable export statements. … … 570 571 fi 571 572 $SHELL -i 573 MY_RC=$? 572 574 else 573 575 test -z "${QUIET_OPT}" && echo "$0: info: Executing command: $*" 1>&${ERR_REDIR} 574 576 $* 577 MY_RC=$? 578 test -z "${QUIET_OPT}" -a "$MY_RC" -ne 0 && echo "$0: info: rc=$MY_RC: $*" 1>&${ERR_REDIR} 575 579 fi 576 580 fi 577 581 fi 578 test -n "$DBG_OPT" && echo "dbg: finished" 1>&${DBG_REDIR} 579 582 test -n "$DBG_OPT" && echo "dbg: finished (rc=$MY_RC)" 1>&${DBG_REDIR} 583 exit $MY_RC 584
Note:
See TracChangeset
for help on using the changeset viewer.