diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-05-24 01:17:28 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-05-24 01:17:28 +0000 |
commit | 5a8f2e47e0123e36da4c8a09b771eff66585e8a9 (patch) | |
tree | 9c317693119c05911c9a82e49bd0d80a9215760f /shells | |
parent | 8d4c44897c889a01277d38803a5453d5a8cb09c7 (diff) | |
download | pkgsrc-5a8f2e47e0123e36da4c8a09b771eff66585e8a9.tar.gz |
Stop the config script from thinking every mips machine is a pmax:
Before:
raqim# echo $version
tcsh 6.09.00 (Astron) 1999-08-16 (mipsel-dec-NetBSD) options 8b,nls,dl,al,rh,color
^^^
After:
raqim# echo $version
tcsh 6.10.00 (Astron) 2000-11-19 (mipsel-mips-NetBSD) options 8b,nls,dl,al,rh,color
^^^^
Patch contributed by rafal@mediaone.net in PR 12993.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/tcsh/distinfo | 3 | ||||
-rw-r--r-- | shells/tcsh/patches/patch-ab | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/shells/tcsh/distinfo b/shells/tcsh/distinfo index f39cce4706e..a10ecfb37b7 100644 --- a/shells/tcsh/distinfo +++ b/shells/tcsh/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.2 2001/04/18 14:53:32 agc Exp $ +$NetBSD: distinfo,v 1.3 2001/05/24 01:17:29 hubertf Exp $ SHA1 (tcsh-6.10.tar.gz) = 29074c586d432087b08d492f116726aad26fd426 Size (tcsh-6.10.tar.gz) = 665733 bytes SHA1 (patch-aa) = 64a8ed288ab0069b455f932ab39e6b2683020653 +SHA1 (patch-ab) = b372d37d31ff01a262b4a145c69fa82ae0e07827 SHA1 (patch-af) = 8db810383f043e65858b5925988cac5fd193c948 SHA1 (patch-ag) = e71ea3d9dd4ea70040ab18702260d3c8890b9da9 diff --git a/shells/tcsh/patches/patch-ab b/shells/tcsh/patches/patch-ab new file mode 100644 index 00000000000..28e3ec0fecb --- /dev/null +++ b/shells/tcsh/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.5 2001/05/24 01:17:28 hubertf Exp $ + +--- host.defs.orig Thu May 24 02:50:19 2001 ++++ host.defs Thu May 24 03:04:11 2001 +@@ -477,8 +477,8 @@ + vendor : defined(m68k) : "motorola" + vendor : defined(mac68k) : "apple" + vendor : defined(pc532) : "national-semi" +-vendor : defined(pmax) || defined(mips) : "dec" +-vendor : defined(M_mipsel) : "dec" ++vendor : defined(pmax) : "dec" ++vendor : defined(mips) : "mips" + vendor : defined(sparc) : "sun" + vendor : defined(sun3) : "sun" + vendor : defined(vax) : "digital" |