summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjschauma <jschauma@pkgsrc.org>2003-01-12 22:36:14 +0000
committerjschauma <jschauma@pkgsrc.org>2003-01-12 22:36:14 +0000
commit207359eaa998ede87a13b0a67a303fec2c331ebd (patch)
tree9bb5c069ec2a870223b231eddac6f842428b3c03 /mk
parenta2843dc815e45a4409a13f679cb27bb9a7f69133 (diff)
downloadpkgsrc-207359eaa998ede87a13b0a67a303fec2c331ebd.tar.gz
According to seb, make on 1.5 does not know about ${VAR:tl}, so let's go back to
echo VAR | tr A-Z a-z
Diffstat (limited to 'mk')
-rw-r--r--mk/bsd.prefs.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index 1358402e0da..cb39c960317 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.100 2003/01/12 22:30:08 jschauma Exp $
+# $NetBSD: bsd.prefs.mk,v 1.101 2003/01/12 22:36:14 jschauma Exp $
#
# Make file, included to get the site preferences, if any. Should
# only be included by package Makefiles before any .if defined()
@@ -29,7 +29,7 @@ MAKEFLAGS+= OPSYS=${OPSYS}
OS_VERSION!= ${UNAME} -r
.endif
.ifndef LOWER_OS_VERSION
-LOWER_OS_VERSION:= ${OS_VERSION:tl}
+LOWER_OS_VERSION!= echo ${OS_VERSION} | tr A-Z a-z
.endif
MAKEFLAGS+= OS_VERSION=${OS_VERSION}
@@ -115,7 +115,7 @@ LOWER_OPSYS?= irix${OS_VERSION:C/\.[0-9]//}
LOWER_VENDOR?= sgi
.elif !defined(LOWER_OPSYS)
-LOWER_OPSYS:= ${OPSYS:tl}
+LOWER_OPSYS!= echo ${OPSYS} | tr A-Z a-z
.endif
MAKEFLAGS+= LOWER_OPSYS=${LOWER_OPSYS}