summaryrefslogtreecommitdiffstats
path: root/package/kvm-unit-tests
diff options
context:
space:
mode:
authorAdam Duskett <Aduskett@gmail.com>2017-04-22 13:17:57 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-01 11:39:51 +0200
commit6acd0a542e2d3aef2b65d3cabcb43561a9a8e8e2 (patch)
treefd51beab1a4dd75f3fcdfc098cbfaf57f8e9d3b2 /package/kvm-unit-tests
parentb206a2733bb3759337e41acd24778460e7ab42df (diff)
downloadbuildroot-6acd0a542e2d3aef2b65d3cabcb43561a9a8e8e2.tar.gz
buildroot-6acd0a542e2d3aef2b65d3cabcb43561a9a8e8e2.zip
package/k*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter k in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/kvm-unit-tests')
-rw-r--r--package/kvm-unit-tests/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kvm-unit-tests/Config.in b/package/kvm-unit-tests/Config.in
index 72656462e1..7eab0c25d6 100644
--- a/package/kvm-unit-tests/Config.in
+++ b/package/kvm-unit-tests/Config.in
@@ -1,6 +1,5 @@
config BR2_PACKAGE_KVM_UNIT_TESTS
bool "kvm-unit-tests"
- select BR2_HOSTARCH_NEEDS_IA32_COMPILER if BR2_x86_64=y
# on i386 and x86-64, __builtin_reachable is used, so we need
# gcc 4.5 at least. on i386, we use the target gcc, while on
# x86-64 we use the host gcc (see .mk file for details)
@@ -11,6 +10,7 @@ config BR2_PACKAGE_KVM_UNIT_TESTS
BR2_powerpc64 || \
BR2_powerpc64le || \
(BR2_x86_64 && BR2_HOST_GCC_AT_LEAST_4_5)
+ select BR2_HOSTARCH_NEEDS_IA32_COMPILER if BR2_x86_64=y
help
kvm-unit-tests is a project as old as KVM. As its name
suggests, it's purpose is to provide unit tests for KVM. The
OpenPOWER on IntegriCloud