Skip to content

Commit

Permalink
Revert "include/autoconf.mk: decouple host fixups from target fixups"
Browse files Browse the repository at this point in the history
This reverts commit r48403

SVN-Revision: 48412
  • Loading branch information
Felix Fietkau committed Jan 20, 2016
1 parent c7308bc commit f8cdadc
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions include/autotools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -143,21 +143,27 @@ define patch_libtool_host
$(HOST_BUILD_DIR)))
endef

ifneq ($(filter patch-libtool-host,$(PKG_FIXUP)),)
ifneq ($(filter patch-libtool,$(PKG_FIXUP)),)
Hooks/HostConfigure/Pre += patch_libtool_host
endif

ifneq ($(filter patch-libtool-host,$(HOST_FIXUP)),)
ifneq ($(filter patch-libtool,$(HOST_FIXUP)),)
Hooks/HostConfigure/Pre += $(strip $(call patch_libtool,$(HOST_BUILD_DIR)))
endif

ifneq ($(filter libtool-host,$(HOST_FIXUP)),)
ifneq ($(filter libtool,$(HOST_FIXUP)),)
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
Hooks/HostConfigure/Pre += autoreconf_host
endif
endif

ifneq ($(filter libtool-ucxx,$(HOST_FIXUP)),)
ifeq ($(filter no-autoreconf,$(HOST_FIXUP)),)
Hooks/HostConfigure/Pre += autoreconf_host
endif
endif

ifneq ($(filter autoreconf-host,$(HOST_FIXUP)),)
ifneq ($(filter autoreconf,$(HOST_FIXUP)),)
ifeq ($(filter autoreconf,$(Hooks/HostConfigure/Pre)),)
Hooks/HostConfigure/Pre += autoreconf_host
endif
Expand Down

0 comments on commit f8cdadc

Please sign in to comment.