diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-14 15:20:11 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-07-14 15:20:11 +0000 |
commit | 2a884e354a933b1297f6e7c8956bb9b9bf50b8b7 (patch) | |
tree | 629700bd2a670f0d7b41ad206a5bab99fd81f42b | |
parent | dd5a5f683e212dc3067ad029103b8afd4eb9e64e (diff) | |
download | crosstool-ng-2a884e354a933b1297f6e7c8956bb9b9bf50b8b7.tar.gz crosstool-ng-2a884e354a933b1297f6e7c8956bb9b9bf50b8b7.tar.bz2 crosstool-ng-2a884e354a933b1297f6e7c8956bb9b9bf50b8b7.zip |
Log the command being run when calling CT_DoExecLog, which is kinda the point of CT_DoExecLog, anyway...
/trunk/scripts/functions | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index bd3c336f..a960f707 100644 --- a/scripts/functions +++ b/scripts/functions @@ -110,7 +110,7 @@ CT_DoLog() { CT_DoExecLog() { local level="$1" shift - CT_DoLog ${level} "${@}" + CT_DoLog DEBUG "==> Executing: '${@}'" eval "${@}" 2>&1 |CT_DoLog "${level}" } |