diff options
author | Steve Price <steve@FreeBSD.org> | 1999-06-22 17:28:03 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-06-22 17:28:03 +0000 |
commit | 64c9f430370e500ce8a6a1fd70b462e5b9ff88b2 (patch) | |
tree | 5f05669490bb7428dff937660b97d34dff65c021 /shells | |
parent | The build fails because this port cannot find glaux.h and not libaux.h. (diff) |
Correct identity string on the alpha.
Noticed by: Jeff Wheat <jeff@cetlink.net>
Notes
Notes:
svn path=/head/; revision=19665
Diffstat (limited to 'shells')
-rw-r--r-- | shells/tcsh/files/patch-ad | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/shells/tcsh/files/patch-ad b/shells/tcsh/files/patch-ad new file mode 100644 index 000000000000..c6ea6223a72c --- /dev/null +++ b/shells/tcsh/files/patch-ad @@ -0,0 +1,16 @@ +--- host.defs.orig Mon Jun 21 20:11:51 1999 ++++ host.defs Mon Jun 21 20:14:16 1999 +@@ -494,10 +494,12 @@ + + newdef : defined(__FreeBSD__) + comment : FreeBSD ++vendor : defined(__alpha) : "digital" + vendor : defined(M_intel) : "intel" + hosttype: : "FreeBSD" + ostype : : "FreeBSD" +-machtype: : "i386" ++machtype: defined(__alpha) : "alpha" ++machtype: defined(M_i386) : "i386" + enddef : + + |