a little housekeeping
This commit is contained in:
parent
34933b4610
commit
e6ef6fcc5c
1 changed files with 3 additions and 1 deletions
|
@ -322,9 +322,11 @@ inline_doc
|
||||||
# However, uncontrolled recursion will cause a seg-fault due to stack issues with local variables.
|
# However, uncontrolled recursion will cause a seg-fault due to stack issues with local variables.
|
||||||
#
|
#
|
||||||
set +e
|
set +e
|
||||||
|
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\n ${spaceSTR:0:$cntr}>push ${DEP}.xinc" >>call_stack
|
||||||
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\nrecursive call: $((++cntr)) ${spaceSTR:0:$cntr} ${RED}$DEP${OFF}"
|
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\nrecursive call: $((++cntr)) ${spaceSTR:0:$cntr} ${RED}$DEP${OFF}"
|
||||||
do_dependencies $DEP
|
do_dependencies $DEP
|
||||||
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\nrecursive ret: $cntr ${spaceSTR:0:$((cntr--))} ${GREEN}$DEP${OFF}\tUsing the new xinclude file for PKG $DEP (to solve $PKG)"
|
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\n${spaceSTR:0:$((cntr))}<pop ${DEP}.xinc for pkg $PKG call build routine" >>call_stack
|
||||||
|
[[ "${VERBOSITY}" > 0 ]] && echo -ne "\n ret: $cntr ${spaceSTR:0:$((cntr--))} ${GREEN}$DEP${OFF}\tUsing the new xinclude file for PKG $DEP (to solve $PKG)"
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Include it when done
|
# Include it when done
|
||||||
|
|
Reference in a new issue