X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Fautotools.mk;h=7ebeff6c76e360ad94b23b81c2c25ef0fc140f8c;hb=92c70e62bf62dd51702bd63dcf28fb80cb5ccc2f;hp=8796598569a748c4d61ec20d9476247929f562ed;hpb=416212fa14bc03239c8a0105f3b151d31a561ba7;p=openwrt.git diff --git a/include/autotools.mk b/include/autotools.mk index 8796598569..7ebeff6c76 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -83,6 +83,15 @@ define patch_libtool_target $(PKG_BUILD_DIR))) endef +define gettext_version_target + cd $(PKG_BUILD_DIR) && \ + GETTEXT_VERSION=$(shell $(STAGING_DIR_HOST)/bin/gettext -V | $(STAGING_DIR_HOST)/bin/sed -ne '1s/.* //p') && \ + $(STAGING_DIR_HOST)/bin/sed \ + -i $(PKG_BUILD_DIR)/configure.ac \ + -e "s/AM_GNU_GETTEXT_VERSION(\[.*\])/AM_GNU_GETTEXT_VERSION(\[$$$$GETTEXT_VERSION\])/g" && \ + $(STAGING_DIR_HOST)/bin/autopoint --force +endef + ifneq ($(filter patch-libtool,$(PKG_FIXUP)),) Hooks/Configure/Pre += patch_libtool_target endif @@ -107,6 +116,10 @@ ifneq ($(filter autoreconf,$(PKG_FIXUP)),) endif endif +ifneq ($(filter gettext-version,$(PKG_FIXUP)),) + Hooks/Configure/Pre += gettext_version_target +endif + HOST_FIXUP?=$(PKG_FIXUP) HOST_LIBTOOL_PATHS?=$(if $(PKG_LIBTOOL_PATHS),$(PKG_LIBTOOL_PATHS),.)