Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Treat acorn32 the same as arm32 for the purposes of...



details:   https://anonhg.NetBSD.org/src/rev/7c430e60b2f8
branches:  trunk
changeset: 516009:7c430e60b2f8
user:      bjh21 <bjh21%NetBSD.org@localhost>
date:      Sat Oct 13 14:46:00 2001 +0000

description:
Treat acorn32 the same as arm32 for the purposes of installing include files.
This is necessary to make the libstdc++ install work with the old toolchain,
since it installs <machine/_G_config.h> into /usr/src/${MACHINE}.  There may
be other dependencies on the Old Way, too.

diffstat:

 sys/arch/Makefile |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 8cd55b9013c4 -r 7c430e60b2f8 sys/arch/Makefile
--- a/sys/arch/Makefile Sat Oct 13 14:23:31 2001 +0000
+++ b/sys/arch/Makefile Sat Oct 13 14:46:00 2001 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 2001/06/24 17:49:47 deberg Exp $
+#      $NetBSD: Makefile,v 1.14 2001/10/13 14:46:00 bjh21 Exp $
 
 # For now, we install the machine and arch includes, and symlink 'machine'
 # to the location of the machine includes (usually).
@@ -22,7 +22,8 @@
 SUBDIR+= sun68k
 .endif
 
-.if ${ARCHSUBDIR} == arm && ${MACHINE} != arm32 && ${MACHINE} != arm26
+.if ${ARCHSUBDIR} == arm && ${MACHINE} != acorn32 && ${MACHINE} != arm32 && \
+       ${MACHINE} != arm26
 SUBDIR+= cats dnard netwinder
 .endif
 
@@ -34,7 +35,8 @@
 # For true arm ports, we point machine at the architecture directory
 # since all the user include are there and are common.
 #
-.if ${ARCHSUBDIR} == arm && ${MACHINE} != arm32 && ${MACHINE} != arm26
+.if ${ARCHSUBDIR} == arm && ${MACHINE} != acorn32 && ${MACHINE} != arm32 && \
+       ${MACHINE} != arm26
 SYMLINKS= ${ARCHSUBDIR} /usr/include/machine
 .else
 SYMLINKS= ${MACHINE} /usr/include/machine



Home | Main Index | Thread Index | Old Index