diff options
author | 2018-07-08 12:26:59 +0200 | |
---|---|---|
committer | 2018-07-10 23:01:47 +0200 | |
commit | 2664022787eb396125b5696a2d42c460ef54d359 (patch) | |
tree | c1a62c3a245af291992a4be88a545bde7582d5a2 /utils | |
parent | a1a152684e6370ec7592539a596f2f1b5e32574e (diff) | |
download | buildroot-2664022787eb396125b5696a2d42c460ef54d359.tar.gz buildroot-2664022787eb396125b5696a2d42c460ef54d359.tar.bz2 |
utils/test-pkg: log the output of merge-config
Currently, the stdout is consigned to oblivion, while the stderr is not
redirected at all. So, when the configuration under test redefines a
symbol, like is the case when testing busybox for example, there is an
ugly warning.
So, just redirect both stdout and stderr to the logfile.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/test-pkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/test-pkg b/utils/test-pkg index 54951276fa..aa91ee02cf 100755 --- a/utils/test-pkg +++ b/utils/test-pkg @@ -131,7 +131,7 @@ build_one() { support/kconfig/merge_config.sh -O "${dir}" \ "${toolchainconfig}" "support/config-fragments/minimal.config" "${cfg}" \ - > /dev/null + >> "${dir}/logfile" 2>&1 # We want all the options from the snippet to be present as-is (set # or not set) in the actual .config; if one of them is not, it means # some dependency from the toolchain or arch is not available, in |