summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/bonniexx.in1
-rw-r--r--rules/gcclibs.in9
-rw-r--r--rules/gcclibs.make2
3 files changed, 8 insertions, 4 deletions
diff --git a/rules/bonniexx.in b/rules/bonniexx.in
index 98db0b37a..6c578c87a 100644
--- a/rules/bonniexx.in
+++ b/rules/bonniexx.in
@@ -1,6 +1,7 @@
config BONNIEXX
bool
prompt "bonnie++"
+ select GCCLIBS
select GCCLIBS_CXX
help
Hard drive bottleneck testing benchmark suite
diff --git a/rules/gcclibs.in b/rules/gcclibs.in
index 446c0390d..3cdeeb59a 100644
--- a/rules/gcclibs.in
+++ b/rules/gcclibs.in
@@ -2,11 +2,14 @@
# rules/gcclibs.in
#
-menu "GCC Libraries "
+menuconfig GCCLIBS
+ bool
+ prompt "GCC Libraries "
depends on BUILD_USERLAND
config GCCLIBS_CXX
bool "libstdc++"
+ depends on GCCLIBS
select GCCLIBS_GCC_S
select GCCLIBS_GCC_S_NOF if ARCH_PPC
select GLIBC_LIBM
@@ -17,14 +20,14 @@ config GCCLIBS_CXX
config GCCLIBS_GCC_S
bool "libgcc_s"
default n
+ depends on GCCLIBS
help
FIXME: This item needs to be documented
config GCCLIBS_GCC_S_NOF
bool "libgcc_s_nof"
default n
+ depends on GCCLIBS
depends on ARCH_PPC
help
FIXME: This item needs to be documented
-
-endmenu
diff --git a/rules/gcclibs.make b/rules/gcclibs.make
index af2122b1a..7c5440cee 100644
--- a/rules/gcclibs.make
+++ b/rules/gcclibs.make
@@ -14,7 +14,7 @@
#
# We provide this package
#
-PACKAGES-$(PTXCONF_GCCLIBS_GCC_S) += gcclibs
+PACKAGES-$(PTXCONF_GCCLIBS) += gcclibs
-include $(call package_depfile)