Jelajahi Sumber

grep: fix build when libiconv is enabled

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Peter Korsgaard 14 tahun lalu
induk
melakukan
28f77123de
1 mengubah file dengan 6 tambahan dan 0 penghapusan
  1. 6 0
      package/grep/grep.mk

+ 6 - 0
package/grep/grep.mk

@@ -9,4 +9,10 @@ GREP_SITE = $(BR2_GNU_MIRROR)/grep
 GREP_CONF_OPT = --disable-perl-regexp --without-included-regex
 GREP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext libintl)
 
+# link with iconv if enabled
+ifeq ($(BR2_PACKAGE_LIBICONV),y)
+GREP_CONF_ENV += LIBS=-liconv
+GREP_DEPENDENCIES += libiconv
+endif
+
 $(eval $(call AUTOTARGETS,package,grep))