Mark a number of development related packages as deprecated
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 10 Nov 2012 12:36:03 +0000 (12:36 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sat, 17 Nov 2012 08:25:30 +0000 (09:25 +0100)
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>
package/autoconf/Config.in
package/automake/Config.in
package/libtool/Config.in
package/make/Config.in

index 5f2f1489282772f3a56c447d3daa30dcd29927bc..60128e9cb71e72e8df5c541e42e11ce95f7aeb15 100644 (file)
@@ -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
index 9a9673a6e81ad874926ee389c3ec4f5e957ef046..e2f6cc7f619da9913887b410fc3e5aad0c65c4af 100644 (file)
@@ -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
index d3cf2d784316cdba18f27e4cc540405dc4195b2e..42df25b0a65bcd33f11421b14ce1828f06998de5 100644 (file)
@@ -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.
index ea2ae1b58b39c1c14a3fbd41b14ded2cc27c2c9c..e5cc970097dca4e800251f3b722d88ba4f2198fc 100644 (file)
@@ -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.