mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-04-16 15:28:55 +00:00
scripts/savesample: be silent when checking for .config file
This commit is contained in:
parent
8743f16f65
commit
f1235bf562
@ -21,7 +21,10 @@ exec >/dev/null
|
||||
rm -f "${tmp_log_file}"
|
||||
|
||||
# Parse the configuration file
|
||||
CT_TestOrAbort "Configuration file not found. Please create one." -f .config
|
||||
# Don't use CT_TestOrAbort, it prints the test string to [DEBUG]
|
||||
if [ ! -f .config ]; then
|
||||
CT_Abort "Configuration file not found. Please create one."
|
||||
fi
|
||||
. .config
|
||||
|
||||
# We can not reliably save a sample which either uses local patches
|
||||
|
Loading…
x
Reference in New Issue
Block a user