From a336c95d0aa6b32b0af3b2f73986bc2dcbd662ba Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Tue, 14 Apr 2015 21:26:49 -0600 Subject: [PATCH] runtime/Makefile: work around echo vs bin/echo --- soc/runtime/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/runtime/Makefile b/soc/runtime/Makefile index 0fcf8c7b3..d63fa65f2 100644 --- a/soc/runtime/Makefile +++ b/soc/runtime/Makefile @@ -5,7 +5,7 @@ OBJECTS_KSUPPORT := exception_jmp.o exceptions.o rtio.o dds.o # NOTE: this does not handle dependencies well. Run "make clean" # when switching between UP and AMP. -UNIPROCESSOR := $(shell echo -e "\#include \nCSR_KERNEL_CPU_BASE" | $(CC_normal) $(CFLAGS) -E - | tail -n 1 | grep -c CSR_KERNEL_CPU_BASE) +UNIPROCESSOR := $(shell /bin/echo -e "\#include \nCSR_KERNEL_CPU_BASE" | $(CC_normal) $(CFLAGS) -E - | tail -n 1 | grep -c CSR_KERNEL_CPU_BASE) ifeq ($(UNIPROCESSOR),0) OBJECTS += mailbox.o kernelcpu.o ksupport_data.o