From: Thomas Petazzoni Date: Wed, 28 Apr 2010 21:41:00 +0000 (+0200) Subject: Fix autotools configuration cache handling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1534274047282767ab7053a2c819d209abc02e20;p=buildroot.git Fix autotools configuration cache handling It got broken by the introduction of the new autotools infrastructure based on the generic infrastructure. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in index 67cc88abe4..318bd714ae 100644 --- a/package/Makefile.autotools.in +++ b/package/Makefile.autotools.in @@ -93,7 +93,7 @@ define $(2)_CONFIGURE_CMDS $$(TARGET_CONFIGURE_ENV) \ $$($$(PKG)_CONF_ENV) \ ./configure \ - $(if $(filter YES,$$($$(PKG)_USE_CONFIG_CACHE)),--cache-file="$(BUILD_DIR)/tgt-config.cache",) \ + $$(if $$(filter YES,$$($$(PKG)_USE_CONFIG_CACHE)),--cache-file="$(BUILD_DIR)/tgt-config.cache",) \ --target=$$(GNU_TARGET_NAME) \ --host=$$(GNU_TARGET_NAME) \ --build=$$(GNU_HOST_NAME) \