Commit d4e8f3cd authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

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: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 8fe6efa8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
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
+2 −0
Original line number Diff line number Diff line
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
+2 −0
Original line number Diff line number Diff line
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.
+2 −0
Original line number Diff line number Diff line
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.