From: Vadim Kochan Date: Mon, 8 Apr 2019 00:28:21 +0000 (+0300) Subject: package/gettext-gnu: fix typo BR2_PACKAGE_GETTEXT_GNU_PROVIDES_LIBINTL X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c2aa19a292ec8b0e4edf439483a27e1ae12bfb3;p=buildroot.git package/gettext-gnu: fix typo BR2_PACKAGE_GETTEXT_GNU_PROVIDES_LIBINTL After commit: ea1e7ee606 package/gettext: turn into virtual package package/gettext was renamed to package/gettext-gnu and introduced typo BR2_PACKAGE_GETTEXT_GNU_PROVIDES_LIBINTL which should be BR2_PACKAGE_GETTEXT_PROVIDES_LIBINTL (w/o "_GNU" part). Reported-by: Romain Naour Signed-off-by: Vadim Kochan Reviewed-by: Romain Naour Signed-off-by: Thomas Petazzoni --- diff --git a/package/gettext-gnu/gettext-gnu.mk b/package/gettext-gnu/gettext-gnu.mk index 61adf72738..c63ad8cb36 100644 --- a/package/gettext-gnu/gettext-gnu.mk +++ b/package/gettext-gnu/gettext-gnu.mk @@ -42,7 +42,7 @@ HOST_GETTEXT_GNU_CONF_OPTS = \ # Force the build of libintl, even if the C library provides a stub # gettext implementation -ifeq ($(BR2_PACKAGE_GETTEXT_GNU_PROVIDES_LIBINTL),y) +ifeq ($(BR2_PACKAGE_GETTEXT_PROVIDES_LIBINTL),y) GETTEXT_GNU_CONF_OPTS += --with-included-gettext else GETTEXT_GNU_CONF_OPTS += --without-included-gettext