1aa42ad4ae
This commit bumps make to version 4.0. This version now uses fork(), so it is no longer available on non-MMU platforms, which consequently works around: http://autobuild.buildroot.org/results/2e1/2e1b11ccb501f1ab431c04435be52a6538d035cb/ The glob special options seem to no longer be needed, at least make 4.0 builds fine with both an ARM uClibc toolchain and an ARM glibc toolchain. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 lines
418 B
Makefile
16 lines
418 B
Makefile
################################################################################
|
|
#
|
|
# make
|
|
#
|
|
################################################################################
|
|
|
|
MAKE_VERSION = 4.0
|
|
MAKE_SOURCE = make-$(MAKE_VERSION).tar.bz2
|
|
MAKE_SITE = $(BR2_GNU_MIRROR)/make
|
|
MAKE_LICENSE = GPLv3+
|
|
MAKE_LICENSE_FILES = COPYING
|
|
|
|
MAKE_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
|
|
$(eval $(autotools-package))
|