summaryrefslogtreecommitdiff
path: root/mk/bsd.prefs.mk
diff options
context:
space:
mode:
authortnn <tnn>2007-10-16 11:51:21 +0000
committertnn <tnn>2007-10-16 11:51:21 +0000
commit8c9293d8c8828d5bc6d73a784755b630ca8261ac (patch)
tree6ca5d8b661ba90d1a4caea11f3782495ea16f7d4 /mk/bsd.prefs.mk
parenta792bb40ea041afad4d91639b90fc8c60154342f (diff)
downloadpkgsrc-8c9293d8c8828d5bc6d73a784755b630ca8261ac.tar.gz
The previous commit needs all platforms to be correct about
separating LOWER_OPSYS and LOWER_OPSYS_VERSUFFIX, since numbers are now removed from LOWER_OPSYS when forming MACHINE_GNU_PLATFORM. Fix the remaining to platforms: Interix and IRIX.
Diffstat (limited to 'mk/bsd.prefs.mk')
-rw-r--r--mk/bsd.prefs.mk8
1 files changed, 5 insertions, 3 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk
index 4411000eaaa..234e3ba9ac2 100644
--- a/mk/bsd.prefs.mk
+++ b/mk/bsd.prefs.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.prefs.mk,v 1.271 2007/10/16 11:34:16 tnn Exp $
+# $NetBSD: bsd.prefs.mk,v 1.272 2007/10/16 11:51:21 tnn Exp $
#
# This file includes the mk.conf file, which contains the user settings.
#
@@ -160,7 +160,8 @@ LOWER_VENDOR?= pc
LOWER_VENDOR?= unknown
.elif ${OPSYS} == "Interix"
-LOWER_OPSYS?= interix3
+LOWER_OPSYS?= interix
+LOWER_OPSYS_VERSUFFIX?= 3
LOWER_VENDOR?= pc
. if exists(/usr/lib/libc.so.3.5)
OS_VERSION= 3.5
@@ -173,7 +174,8 @@ LOWER_OS_VERSION= ${OS_VERSION}
.elif !empty(OPSYS:MIRIX*)
LOWER_ARCH!= ${UNAME} -p
-LOWER_OPSYS?= irix${OS_VERSION}
+LOWER_OPSYS?= irix
+LOWER_OPSYS_VERSUFFIX?= ${OS_VERSION}
LOWER_VENDOR?= sgi
.elif ${OPSYS} == "Linux"