From: Danomi Manchego Date: Mon, 11 Mar 2013 15:58:31 +0000 (+0000) Subject: pkg-autotools.mk: remove extra space from config-update message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=28bb03ac9d6c8cb73dc01451efcc02c8b87b0456;p=buildroot.git pkg-autotools.mk: remove extra space from config-update message If you do a "make -s", you will notice that the UPDATE_CONFIG_HOOK message has an extra space compared to other highlighted messages.  For example: >>> util-linux 2.20.1  Updating config.sub and config.guess >>> util-linux 2.20.1 Patching libtool >>> util-linux 2.20.1 Autoreconfiguring A grep shows this is the only instance of the extra space. This patch removes the extra space. Signed-off-by: Danomi Manchego Acked-by: Thomas Petazzoni Acked-by: Thomas De Schampheleire Signed-off-by: Peter Korsgaard --- diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk index 890506bbc2..995c68596b 100644 --- a/package/pkg-autotools.mk +++ b/package/pkg-autotools.mk @@ -145,7 +145,7 @@ endif # Hook to update config.sub and config.guess if needed # define UPDATE_CONFIG_HOOK - @$$(call MESSAGE, "Updating config.sub and config.guess") + @$$(call MESSAGE,"Updating config.sub and config.guess") $$(call CONFIG_UPDATE,$$(@D)) endef