Source-Changes-HG archive

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

[src/trunk]: src/gnu/lib/libstdc++/config If MACHINE_ARCH == arm, install int...



details:   https://anonhg.NetBSD.org/src/rev/ae902b91cb61
branches:  trunk
changeset: 516182:ae902b91cb61
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Oct 18 06:12:48 2001 +0000

description:
If MACHINE_ARCH == arm, install into /usr/include/${MACHINE_ARCH}

diffstat:

 gnu/lib/libstdc++/config/Makefile |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 8a22663bf285 -r ae902b91cb61 gnu/lib/libstdc++/config/Makefile
--- a/gnu/lib/libstdc++/config/Makefile Thu Oct 18 05:45:26 2001 +0000
+++ b/gnu/lib/libstdc++/config/Makefile Thu Oct 18 06:12:48 2001 +0000
@@ -1,10 +1,14 @@
-#      $NetBSD: Makefile,v 1.5 2001/08/10 11:57:48 mrg Exp $
+#      $NetBSD: Makefile,v 1.6 2001/10/18 06:12:48 matt Exp $
 
 # Makefile for _G_config.h, a machine-dependent automatically generated
 # configuration file.
 
 INCS=          _G_config.h
+.if ${MACHINE_ARCH} == "arm"
+INCSDIR=       /usr/include/${MACHINE_ARCH}
+.else
 INCSDIR=       /usr/include/${MACHINE}
+.endif
 
 .include <bsd.own.mk>
 



Home | Main Index | Thread Index | Old Index