Commit 89d1ad91 authored by Lionel Landwerlin's avatar Lionel Landwerlin Committed by Peter Korsgaard
Browse files

package: move autoreconfigure step to pre configure hook



[Peter: update documentation to match]
Signed-off-by: default avatarLionel Landwerlin <llandwerlin@gmail.com>
Acked-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 3256bcaf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1123,6 +1123,7 @@ endef

    <ul>
      <li><code>LIBFOO_POST_PATCH_HOOKS</code></li>
      <li><code>LIBFOO_PRE_CONFIGURE_HOOKS</code></li>
      <li><code>LIBFOO_POST_CONFIGURE_HOOKS</code></li>
      <li><code>LIBFOO_POST_BUILD_HOOKS</code></li>
      <li><code>LIBFOO_POST_INSTALL_HOOKS</code> (for host packages only)</li>
+1 −1
Original line number Diff line number Diff line
@@ -177,7 +177,7 @@ define AUTORECONF_HOOK
endef

ifeq ($$($(2)_AUTORECONF),YES)
$(2)_POST_PATCH_HOOKS += AUTORECONF_HOOK
$(2)_PRE_CONFIGURE_HOOKS += AUTORECONF_HOOK
$(2)_DEPENDENCIES += host-automake host-autoconf host-libtool
endif

+2 −0
Original line number Diff line number Diff line
@@ -261,6 +261,7 @@ $(BUILD_DIR)/%/.stamp_patched:

# Configure
$(BUILD_DIR)/%/.stamp_configured:
	$(foreach hook,$($(PKG)_PRE_CONFIGURE_HOOKS),$(call $(hook))$(sep))
	@$(call MESSAGE,"Configuring")
	$($(PKG)_CONFIGURE_CMDS)
	$(foreach hook,$($(PKG)_POST_CONFIGURE_HOOKS),$(call $(hook))$(sep))
@@ -410,6 +411,7 @@ $(2)_TARGET_DIRCLEAN = $$($(2)_DIR)/.stamp_dircleaned
# post-steps hooks
$(2)_POST_EXTRACT_HOOKS         ?=
$(2)_POST_PATCH_HOOKS           ?=
$(2)_PRE_CONFIGURE_HOOKS        ?=
$(2)_POST_CONFIGURE_HOOKS       ?=
$(2)_POST_BUILD_HOOKS           ?=
$(2)_POST_INSTALL_HOOKS         ?=