diff options
author | Johan Oudinet <johan.oudinet@gmail.com> | 2014-11-12 01:25:50 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-11-22 20:35:58 +0100 |
commit | d2ae901036897bd9b4a0c3b2835a70667c076bf5 (patch) | |
tree | 4de0f5f255c55849491c9b075f8542c359852cbb | |
parent | f2d0052f3b665d60302c95a9e0eb98741f17b3f2 (diff) | |
download | buildroot-d2ae901036897bd9b4a0c3b2835a70667c076bf5.tar.gz buildroot-d2ae901036897bd9b4a0c3b2835a70667c076bf5.zip |
pkg-autotools: move the libtool patching call out of the autoreconf hook
Call it as a standalone hook, like is done for post-patch.
[Thomas: change back the author to Johan. Yann mistakenly changed it
when submitting the patch series.]
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
[yann.morin.1998@free.fr: split the patch into semantically separate
patches]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/pkg-autotools.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk index 393f995644..45947b0088 100644 --- a/package/pkg-autotools.mk +++ b/package/pkg-autotools.mk @@ -98,7 +98,6 @@ endef define AUTORECONF_HOOK @$(call MESSAGE,"Autoreconfiguring") $(Q)cd $($(PKG)_SRCDIR) && $($(PKG)_AUTORECONF_ENV) $(AUTORECONF) $($(PKG)_AUTORECONF_OPTS) - $(call PATCH_LIBTOOL,$($(PKG)_SRCDIR)) endef ################################################################################ @@ -260,6 +259,10 @@ $(2)_PRE_CONFIGURE_HOOKS += GETTEXTIZE_HOOK $(2)_DEPENDENCIES += host-gettext endif $(2)_PRE_CONFIGURE_HOOKS += AUTORECONF_HOOK +# default values are not evaluated yet, so don't rely on this defaulting to YES +ifneq ($$($(2)_LIBTOOL_PATCH),NO) +$(2)_PRE_CONFIGURE_HOOKS += LIBTOOL_PATCH_HOOK +endif $(2)_DEPENDENCIES += host-automake host-autoconf host-libtool endif |