X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=include%2Fautotools.mk;h=259569b14fd0112b286a6809f4ce2d4c860620b6;hb=3675e657ed2746776a031766c7c121fc1936235b;hp=7ebeff6c76e360ad94b23b81c2c25ef0fc140f8c;hpb=70749275330c71f0cbd4f815a1713923365d6d13;p=openwrt%2Fstaging%2Fwigyori.git diff --git a/include/autotools.mk b/include/autotools.mk index 7ebeff6c76..259569b14f 100644 --- a/include/autotools.mk +++ b/include/autotools.mk @@ -84,14 +84,22 @@ define patch_libtool_target 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 + (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 gettext-version,$(PKG_FIXUP)),) + Hooks/Configure/Pre += gettext_version_target + ifeq ($(filter no-autoreconf,$(PKG_FIXUP)),) + Hooks/Configure/Pre += autoreconf_target + endif +endif + ifneq ($(filter patch-libtool,$(PKG_FIXUP)),) Hooks/Configure/Pre += patch_libtool_target endif @@ -116,10 +124,6 @@ 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),.)