summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-10 12:36:03 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-11-17 09:25:30 +0100
commitd4e8f3cd4874c963da77480bcb76df05ffaaa739 (patch)
treece78f5111c2b718854ebbbdb4a0f4cda8fd6ed6d
parent8fe6efa874c535d5e8cfa05f5837bff2018b07fc (diff)
downloadbuildroot-novena-d4e8f3cd4874c963da77480bcb76df05ffaaa739.tar.gz
buildroot-novena-d4e8f3cd4874c963da77480bcb76df05ffaaa739.zip
Mark a number of development related packages as deprecated
automake, autoconf, libtool and make on the target are basically useless if we don't support building a toolchain on the target. Of course, the host variant of automake, autoconf and libtool will remain available. [Peter: fixup to apply after perl change] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/autoconf/Config.in2
-rw-r--r--package/automake/Config.in2
-rw-r--r--package/libtool/Config.in2
-rw-r--r--package/make/Config.in2
4 files changed, 8 insertions, 0 deletions
diff --git a/package/autoconf/Config.in b/package/autoconf/Config.in
index 5f2f14892..60128e9cb 100644
--- a/package/autoconf/Config.in
+++ b/package/autoconf/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_AUTOCONF
bool "autoconf"
+ # We no longer support a toolchain on the target
+ depends on BR2_DEPRECATED
select BR2_PACKAGE_PERL
help
Extensible program for developing configure scripts. These
diff --git a/package/automake/Config.in b/package/automake/Config.in
index 9a9673a6e..e2f6cc7f6 100644
--- a/package/automake/Config.in
+++ b/package/automake/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_AUTOMAKE
bool "automake"
+ # We no longer support a toolchain on the target
+ depends on BR2_DEPRECATED
select BR2_PACKAGE_AUTOCONF
select BR2_PACKAGE_PERL
help
diff --git a/package/libtool/Config.in b/package/libtool/Config.in
index d3cf2d784..42df25b0a 100644
--- a/package/libtool/Config.in
+++ b/package/libtool/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_LIBTOOL
bool "libtool"
+ # We no longer support a toolchain on the target
+ depends on BR2_DEPRECATED
help
Library that hides the complexity of using shared/static libraries
on different platforms behind a consistent, portable interface.
diff --git a/package/make/Config.in b/package/make/Config.in
index ea2ae1b58..e5cc97009 100644
--- a/package/make/Config.in
+++ b/package/make/Config.in
@@ -1,6 +1,8 @@
config BR2_PACKAGE_MAKE
bool "make"
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
+ # We no longer support a toolchain on the target
+ depends on BR2_DEPRECATED
help
A tool which controls the generation of executables and other
non-source files of a program from the program's source files.