51243f52e1
Also drop diffutils-gets-no-longer-exists-in-eglibc-2.16.patch because gets is unconditionally undefined now so we don't need the patch. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
539 B
Makefile
19 lines
539 B
Makefile
################################################################################
|
|
#
|
|
# diffutils
|
|
#
|
|
################################################################################
|
|
|
|
DIFFUTILS_VERSION = 3.3
|
|
DIFFUTILS_SOURCE = diffutils-$(DIFFUTILS_VERSION).tar.xz
|
|
DIFFUTILS_SITE = $(BR2_GNU_MIRROR)/diffutils
|
|
DIFFUTILS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
DIFFUTILS_LICENSE = GPLv3+
|
|
DIFFUTILS_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
DIFFUTILS_DEPENDENCIES += busybox
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|