From: Yann E. MORIN Date: Wed, 12 Nov 2014 00:25:53 +0000 (+0100) Subject: pkg-autotools: only apply libtool patch at the right moment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=452c8da326a29bfbeacce7a360aa0fba3abc3108;p=buildroot.git pkg-autotools: only apply libtool patch at the right moment Currently, we apply the libtool patch at post-patch time, always. If we need to autoreconf, we also apply it after autoreconf is done. Obviously, in that second case, we do not need to apply it at post-patch time. This has no impact on the result, as autoreconf will overwrite the just patched files, and they will be patched yet again. But it is not nice to the user that will see a double "Patching libtool" message. So, we apply the libtool patch at post-patch time only if we are not autoreconfiguring the package. [Thomas: fix minor typo s/casse/case/ in the commit log.] Signed-off-by: "Yann E. MORIN" Cc: Thomas Petazzoni Cc: Arnout Vandecappelle Cc: Johan Oudinet Signed-off-by: Thomas Petazzoni --- diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk index 924816b9c8..ad2d1a6f6e 100644 --- a/package/pkg-autotools.mk +++ b/package/pkg-autotools.mk @@ -235,12 +235,8 @@ endif $(2)_POST_PATCH_HOOKS += UPDATE_CONFIG_HOOK -# default values are not evaluated yet, so don't rely on this defaulting to YES -ifneq ($$($(2)_LIBTOOL_PATCH),NO) -$(2)_POST_PATCH_HOOKS += LIBTOOL_PATCH_HOOK -endif - ifeq ($$($(2)_AUTORECONF),YES) + # This has to come before autoreconf ifeq ($$($(2)_GETTEXTIZE),YES) $(2)_PRE_CONFIGURE_HOOKS += GETTEXTIZE_HOOK @@ -252,6 +248,14 @@ ifneq ($$($(2)_LIBTOOL_PATCH),NO) $(2)_PRE_CONFIGURE_HOOKS += LIBTOOL_PATCH_HOOK endif $(2)_DEPENDENCIES += host-automake host-autoconf host-libtool + +else # ! AUTORECONF = YES + +# default values are not evaluated yet, so don't rely on this defaulting to YES +ifneq ($$($(2)_LIBTOOL_PATCH),NO) +$(2)_POST_PATCH_HOOKS += LIBTOOL_PATCH_HOOK +endif + endif #