From e692b6f78e25b78e77387abb0b6e90cbc3407303 Mon Sep 17 00:00:00 2001 From: nbd Date: Mon, 30 Jul 2007 14:50:15 +0000 Subject: [PATCH] fix verbose output with dash as /bin/sh git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8227 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- Makefile | 2 ++ include/host.mk | 1 + include/verbose.mk | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6703d90d6..a039c9880 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,8 @@ ifneq ($(OPENWRT_BUILD),1) export OPENWRT_BUILD:=1 include $(TOPDIR)/include/toplevel.mk else + include $(TOPDIR)/include/host.mk + include rules.mk include $(INCLUDE_DIR)/depends.mk include $(INCLUDE_DIR)/subdir.mk diff --git a/include/host.mk b/include/host.mk index cc0436e7b..8b2e56ce5 100644 --- a/include/host.mk +++ b/include/host.mk @@ -8,6 +8,7 @@ -include $(TMP_DIR)/.host.mk export TAR +TMP_DIR ?= $(TOPDIR)/tmp ifneq ($(__host_inc),1) __host_inc:=1 diff --git a/include/verbose.mk b/include/verbose.mk index f18e9a2c7..5ceaf9999 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -26,7 +26,7 @@ ifeq ($(IS_TTY),1) endif define MESSAGE - echo -e "$(_Y)$(1)$(_N)" >&3 + /bin/echo -e "$(_Y)$(1)$(_N)" >&3 endef ifneq ($(KBUILD_VERBOSE),99) -- 2.35.1