diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-16 22:23:53 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-06-16 22:23:53 +0000 |
commit | 5e07f7cfc3292f4c185a570546e449b096056da7 (patch) | |
tree | 54db73ad95a7ceda786f66fea50de9301fbb7161 /scripts/saveSample.sh | |
parent | d8bc11b1653185bc826680243cc32b87a6451df2 (diff) | |
download | crosstool-ng-5e07f7cfc3292f4c185a570546e449b096056da7.tar.gz crosstool-ng-5e07f7cfc3292f4c185a570546e449b096056da7.tar.bz2 crosstool-ng-5e07f7cfc3292f4c185a570546e449b096056da7.zip |
scripts/functions is responsible for initiating the log file.
Users of the log facility are in charge to use, move, delete this log file, now.
Diffstat (limited to 'scripts/saveSample.sh')
-rwxr-xr-x | scripts/saveSample.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/saveSample.sh b/scripts/saveSample.sh index 3d58bd99..7a5b57cc 100755 --- a/scripts/saveSample.sh +++ b/scripts/saveSample.sh @@ -10,8 +10,9 @@ . "${CT_TOP_DIR}/scripts/functions" -exec 6>&1 +# Don't care about any log file exec >/dev/null +rm -f "${tmp_log_file}" # Parse the configuration file CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config" |