Files
CoreMP135_buildroot/package/diffutils/diffutils.mk
T

23 lines
740 B
Makefile
Raw Normal View History

2013-06-05 23:53:30 +00:00
################################################################################
2003-02-12 10:40:28 +00:00
#
# diffutils
#
2013-06-05 23:53:30 +00:00
################################################################################
2003-02-12 10:40:28 +00:00
2021-09-12 12:04:55 +02:00
DIFFUTILS_VERSION = 3.8
DIFFUTILS_SOURCE = diffutils-$(DIFFUTILS_VERSION).tar.xz
2011-11-13 19:27:53 -03:00
DIFFUTILS_SITE = $(BR2_GNU_MIRROR)/diffutils
2017-07-03 22:41:14 +02:00
DIFFUTILS_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
DIFFUTILS_LICENSE = GPL-3.0+
2013-06-28 10:41:03 -03:00
DIFFUTILS_LICENSE_FILES = COPYING
# We're patching m4/stack-direction.m4
DIFFUTILS_AUTORECONF = YES
# Since glibc >= 2.26, don't try to use getopt_long replacement bundled
# with diffutils. It will conflict with the one from glibc.
ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
DIFFUTILS_CONF_ENV += gl_cv_func_getopt_gnu=yes
endif
$(eval $(autotools-package))