From: nbd 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.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=75891cb99cc0695c5de44baaeac3454d5ee3415d fix a typo that prevented host build specific variable exports from working git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15512 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/host-build.mk b/include/host-build.mk index e04cd0898..4bac68014 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 $$@