From 08c3724108f33060956438bff670ee1135f473b1 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 21 Feb 2010 10:15:53 +0100 Subject: use TARGET_CROSS, minor indentation fixes --- mk/build.mk | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'mk') diff --git a/mk/build.mk b/mk/build.mk index f6e438508..879bdc04b 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -415,38 +415,38 @@ endif # ! ifeq ($(strip $(ADK_HAVE_DOT_CONFIG)),y) # build all targets and combinations bulk: while read target libc fs; do \ - mkdir -p $(TOPDIR)/bin/$$target_$$libc; \ + mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ $(GMAKE) prereq && \ $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs defconfig; \ $(GMAKE) VERBOSE=1 all; \ rm .config; \ - ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \ + ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \ done <${TOPDIR}/target/bulk.lst bulkall: while read target libc fs; do \ - mkdir -p $(TOPDIR)/bin/$$target_$$libc; \ + mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ $(GMAKE) prereq && \ $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allconfig; \ $(GMAKE) VERBOSE=1 all; \ rm .config; \ - ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \ + ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \ done <${TOPDIR}/target/bulk.lst bulkallmod: while read target libc fs; do \ - mkdir -p $(TOPDIR)/bin/$$target_$$libc; \ + mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ $(GMAKE) prereq && \ $(GMAKE) TARGET=$$target LIBC=$$libc FS=$$fs allmodconfig; \ $(GMAKE) VERBOSE=1 all; \ rm .config; \ - ) 2>&1 | tee $(TOPDIR)/bin/$$target_$$libc/$$target-$$libc-$$fs.log; \ + ) 2>&1 | tee $(TOPDIR)/bin/$${target}_$$libc/$$target-$$libc-$$fs.log; \ done <${TOPDIR}/target/bulk.lst menu .menu: $(wildcard ${TOPDIR}/package/*/Makefile) -- cgit v1.2.3