summaryrefslogtreecommitdiffstats
path: root/make/leaf.cfg
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/leaf.cfg12
1 files changed, 3 insertions, 9 deletions
diff --git a/make/leaf.cfg b/make/leaf.cfg
index b02af689fd..06407755ae 100644
--- a/make/leaf.cfg
+++ b/make/leaf.cfg
@@ -34,16 +34,10 @@ MANAGERS := $(patsubst all, $(MANAGER_LIST), $(MANAGERS))
# and finally rip out duplicates
MANAGERS := $(sort $(MANAGERS))
-# Pull in the desired compiler
-# This is almost always the "target" compiler.
-# But sometimes, you have to build something on the host.
-# Allow for that by allowing individual Makefiles specify $(USE_HOST_COMPILER)
+# Pull in the desired "target" compiler
+# Programs built on the host use automake generated rules.
# This will not change $(ARCH) -- binaries will still be place as per target
-ifeq (,$(USE_HOST_COMPILER))
- include ${CONFIG.$(TARGET_ARCH).CC}
-else
- include $(CONFIG.$(HOST_ARCH).CC)
-endif
+include ${CONFIG.$(TARGET_ARCH).CC}
ifeq (${DEPEND},$(wildcard ${DEPEND}))
include ${DEPEND} # pull in dependencies if they exist
endif