diff options
author | Nasser Afshin <Afshin.Nasser@gmail.com> | 2018-11-14 11:16:05 +0330 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-11-24 10:11:13 +0100 |
commit | 8ca206e5a14167ae86b9aba9a65e2392edcb9a70 (patch) | |
tree | 691323cc6c1aa514d62c2287a1a6c41a2ba075b7 | |
parent | 8f069a665c862b6c4890d0802e7835d0ba62e27a (diff) | |
download | buildroot-8ca206e5a14167ae86b9aba9a65e2392edcb9a70.tar.gz buildroot-8ca206e5a14167ae86b9aba9a65e2392edcb9a70.zip |
utils/test-pkg: use the correct config prefix when merging
We should use an empty prefix as we do not have any prefix.
Note that BR2_ is mere a convention.
Signed-off-by: Nasser Afshin <Afshin.Nasser@gmail.com>
Reviewed-by: Petr Vorel <petr.vorel@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-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 aa91ee02cf..e4f68ed061 100755 --- a/utils/test-pkg +++ b/utils/test-pkg @@ -129,7 +129,7 @@ build_one() { mkdir -p "${dir}" - support/kconfig/merge_config.sh -O "${dir}" \ + CONFIG_= support/kconfig/merge_config.sh -O "${dir}" \ "${toolchainconfig}" "support/config-fragments/minimal.config" "${cfg}" \ >> "${dir}/logfile" 2>&1 # We want all the options from the snippet to be present as-is (set |