From ca60eb8674463d261725f4620484679002078b2e Mon Sep 17 00:00:00 2001 From: bernhardheld Date: Thu, 13 Feb 2003 13:18:09 +0000 Subject: [PATCH] fix cc detection git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2261 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/regression/ports/host/spec.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/regression/ports/host/spec.mk b/support/regression/ports/host/spec.mk index 55da042b..e1dd68f6 100644 --- a/support/regression/ports/host/spec.mk +++ b/support/regression/ports/host/spec.mk @@ -1,5 +1,5 @@ # Port specification for compiling on the host machines version of gcc -SDCC = $(shell which gcc || which cc) +SDCC = $(shell which gcc > /dev/null || which cc) SDCCFLAGS = -DPORT_HOST=1 -Wall -fsigned-char -DREENTRANT= EXEEXT = .bin -- 2.47.2