diff options
author | tron <tron@pkgsrc.org> | 2013-11-24 10:13:41 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2013-11-24 10:13:41 +0000 |
commit | a8e6dd4c16779a0d8cc190f5d838028ccba27edd (patch) | |
tree | 9107a8b922ace70bd2c9e8610d2df6211da28c37 /mk | |
parent | 0fba48ce797e47541d1ba33091fd94aa35aae61e (diff) | |
download | pkgsrc-a8e6dd4c16779a0d8cc190f5d838028ccba27edd.tar.gz |
Don't use "${ECHO}" which isn't defined yet, hard code "echo" instead.
As this doesn't have to be portable anyway it won't cause problems.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/platform/Darwin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Darwin.mk b/mk/platform/Darwin.mk index e2dcb29cc7e..38c1b388ed2 100644 --- a/mk/platform/Darwin.mk +++ b/mk/platform/Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.59 2013/11/24 09:36:41 jperkin Exp $ +# $NetBSD: Darwin.mk,v 1.60 2013/11/24 10:13:41 tron Exp $ # # Variable definitions for the Darwin operating system. @@ -76,7 +76,7 @@ _OPSYS_EMULDIR.darwin= # empty # into /usr/include, so we need to query their location. # .if exists(/usr/bin/xcrun) -OSX_SDK_PATH!= /usr/bin/xcrun --show-sdk-path 2>/dev/null || ${ECHO} "" +OSX_SDK_PATH!= /usr/bin/xcrun --show-sdk-path 2>/dev/null || echo /nonexistent .endif _OPSYS_SYSTEM_RPATH?= /usr/lib |