Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/libexec/ld.elf_so Always use ${MACHINE_ARCH} rather than ${M...
details: https://anonhg.NetBSD.org/src/rev/edd4d8dd4bec
branches: trunk
changeset: 472420:edd4d8dd4bec
user: kleink <kleink%NetBSD.org@localhost>
date: Thu Apr 29 15:31:05 1999 +0000
description:
Always use ${MACHINE_ARCH} rather than ${MACHINE}, and reorder architectures
a bit.
diffstat:
libexec/ld.elf_so/Makefile | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diffs (28 lines):
diff -r 9f012d468eb6 -r edd4d8dd4bec libexec/ld.elf_so/Makefile
--- a/libexec/ld.elf_so/Makefile Thu Apr 29 15:31:00 1999 +0000
+++ b/libexec/ld.elf_so/Makefile Thu Apr 29 15:31:05 1999 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 1999/04/29 15:06:41 kleink Exp $
+# $NetBSD: Makefile,v 1.28 1999/04/29 15:31:05 kleink Exp $
.include <bsd.own.mk> # for OBJECT_FMT definition
@@ -9,11 +9,13 @@
ARCHSUBDIR= ${MACHINE_ARCH:C/mipse[bl]/mips/}
M= ${.CURDIR}/arch/${ARCHSUBDIR}
-.if (${MACHINE} == "alpha") || \
- (${MACHINE_ARCH} == "mipsel") || (${MACHINE_ARCH} == "mipseb") || \
- (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "sparc64") || \
- (${MACHINE} == "i386") || (${MACHINE_ARCH} == "m68k") || \
- (${MACHINE} == "sparc")
+.if (${MACHINE_ARCH} == "alpha") || \
+ (${MACHINE_ARCH} == "i386") || \
+ (${MACHINE_ARCH} == "m68k") || \
+ (${MACHINE_ARCH} == "mipsel") || (${MACHINE_ARCH} == "mipseb") || \
+ (${MACHINE_ARCH} == "powerpc") || \
+ (${MACHINE_ARCH} == "sparc") || \
+ (${MACHINE_ARCH} == "sparc64")
# Adds SRCS, CPPFLAGS, LDFLAGS, etc. Must go first so MD startup source
# is first.
.if exists($M/Makefile.inc)
Home |
Main Index |
Thread Index |
Old Index