diff options
author | tnn <tnn@pkgsrc.org> | 2007-10-16 11:51:21 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-10-16 11:51:21 +0000 |
commit | 40b0fe886da57b2a3f0ee08e0cccfd315c69555f (patch) | |
tree | 6ca5d8b661ba90d1a4caea11f3782495ea16f7d4 /mk | |
parent | f22b17405bbb09b204c48225faf4aaf7238fc6a9 (diff) | |
download | pkgsrc-40b0fe886da57b2a3f0ee08e0cccfd315c69555f.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')
-rw-r--r-- | mk/bsd.prefs.mk | 8 |
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" |