diff options
| author | matt <matt@NetBSD.org> | 2001-10-18 06:12:48 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2001-10-18 06:12:48 +0000 |
| commit | 9744d3aebc2f1d5c5e49d0e9c1823940104760bb (patch) | |
| tree | ff3815ffb703ba1db1a135eca2526f0ec9175199 /gnu/lib/libstdc++ | |
| parent | 1532b671570b0d0e2fdef245d85727d498145ef5 (diff) | |
If MACHINE_ARCH == arm, install into /usr/include/${MACHINE_ARCH}
Diffstat (limited to 'gnu/lib/libstdc++')
| -rw-r--r-- | gnu/lib/libstdc++/config/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/lib/libstdc++/config/Makefile b/gnu/lib/libstdc++/config/Makefile index c1769bfb102..a5ba3f8c708 100644 --- a/gnu/lib/libstdc++/config/Makefile +++ b/gnu/lib/libstdc++/config/Makefile @@ -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> |
