From: Felix Fietkau Date: Thu, 30 Apr 2009 14:15:45 +0000 (+0000) Subject: fix a typo that prevented host build specific variable exports from working X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e3fc6c9b885b54856aefeca95d04af7d67287c4b;p=openwrt%2Fstaging%2Fansuel.git fix a typo that prevented host build specific variable exports from working SVN-Revision: 15512 --- diff --git a/include/host-build.mk b/include/host-build.mk index e04cd08985..4bac680147 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -123,12 +123,12 @@ ifndef DUMP $(call Host/Prepare) touch $$@ - $(call Host/Exports,$(STAMP_CONFIGURED)) + $(call Host/Exports,$(HOST_STAMP_CONFIGURED)) $(HOST_STAMP_CONFIGURED): $(HOST_STAMP_PREPARED) $(call Host/Configure) touch $$@ - $(call Host/Exports,$(STAMP_BUILT)) + $(call Host/Exports,$(HOST_STAMP_BUILT)) $(HOST_STAMP_BUILT): $(HOST_STAMP_CONFIGURED) $(call Host/Compile) touch $$@