From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vadim Kochan Date: Fri, 24 Aug 2018 16:20:49 +0300 Subject: [Buildroot] [PATCH 1/1] git: Fix libintl linking if there is no full gettext support Message-ID: <20180824132049.20330-1-vadim4j@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net From: Vadim Kochan Git could not resolve libntl_xxx symbols if toolchain does no provide full gettext support but the gettext package is selected. In case of ulibc/musl toolchain there is no full getttext support, but they still provides libintl stub which makes git think there is full gettext support hence -lintl is not passed to the linker. Added workaround which checks if toolchain provides full gettext support, if no then -lintl will be added to EXTLIBS variable generated within config.mak file. Signed-off-by: Vadim Kochan --- package/git/git.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/package/git/git.mk b/package/git/git.mk index ac7b8f2e8c..2d3c3cc2c1 100644 --- a/package/git/git.mk +++ b/package/git/git.mk @@ -63,8 +63,18 @@ endif ifeq ($(BR2_SYSTEM_ENABLE_NLS),) GIT_MAKE_OPTS += NO_GETTEXT=1 +else +ifeq ($(BR2_TOOLCHAIN_HAS_FULL_GETTEXT),) +GIT_EXTLIBS += -lintl +endif endif +define GIT_GEN_EXT_CONFIG_CMDS + echo "EXTLIBS = $(GIT_EXTLIBS)" >> $(@D)/config.mak +endef + +GIT_POST_CONFIGURE_HOOKS += GIT_GEN_EXT_CONFIG_CMDS + GIT_INSTALL_TARGET_OPTS = $(GIT_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install # assume yes for these tests, configure will bail out otherwise -- 2.14.1