debc50bd59
Fix the following build failure with microblazeel and or1k raised since
bump to version 3.7 in commit f1f0b633eb
:
sigsegv.c: In function 'sigsegv_handler':
sigsegv.c:979:28: error: 'struct vma_struct' has no member named 'is_near_this'
979 | : vma.is_near_this (addr, &vma))
|
Fixes:
- http://autobuild.buildroot.org/results/78142463ba8cc5f6c1bf15295095a271422294f4
- http://autobuild.buildroot.org/results/f300b1b5e958f096a9d58197a44dcf0c2abd3585
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# grep
|
|
#
|
|
################################################################################
|
|
|
|
GREP_VERSION = 3.7
|
|
GREP_SITE = $(BR2_GNU_MIRROR)/grep
|
|
GREP_SOURCE = grep-$(GREP_VERSION).tar.xz
|
|
GREP_LICENSE = GPL-3.0+
|
|
GREP_LICENSE_FILES = COPYING
|
|
GREP_CPE_ID_VENDOR = gnu
|
|
# We're patching m4/stack-direction.m4
|
|
GREP_AUTORECONF = YES
|
|
GREP_DEPENDENCIES = $(TARGET_NLS_DEPENDENCIES)
|
|
# install into /bin like busybox grep
|
|
GREP_CONF_OPTS = --exec-prefix=/
|
|
|
|
ifeq ($(BR2_SYSTEM_BIN_SH_NONE),y)
|
|
|
|
define GREP_REMOVE_ALIAS
|
|
$(RM) $(TARGET_DIR)/bin/[fe]grep
|
|
endef
|
|
GREP_POST_INSTALL_TARGET_HOOKS += GREP_REMOVE_ALIAS
|
|
|
|
else
|
|
|
|
# ensure egrep/fgrep shell wrappers use #!/bin/sh
|
|
define GREP_FIXUP_SHEBANG
|
|
$(SED) 's/bash$$/sh/' $(TARGET_DIR)/bin/[fe]grep
|
|
endef
|
|
GREP_POST_INSTALL_TARGET_HOOKS += GREP_FIXUP_SHEBANG
|
|
|
|
endif
|
|
|
|
# link with iconv if enabled
|
|
ifeq ($(BR2_PACKAGE_LIBICONV),y)
|
|
GREP_CONF_ENV += LIBS=-liconv
|
|
GREP_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
# link with pcre if enabled
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
GREP_CONF_OPTS += --enable-perl-regexp
|
|
GREP_DEPENDENCIES += pcre
|
|
else
|
|
GREP_CONF_OPTS += --disable-perl-regexp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|