Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.sbin/config Don't emit MACHINE/MACHINE_ARCH. Instead em...
details: https://anonhg.NetBSD.org/src/rev/0e2f65c7e0ce
branches: trunk
changeset: 499991:0e2f65c7e0ce
user: matt <matt%NetBSD.org@localhost>
date: Sun Dec 03 07:06:15 2000 +0000
description:
Don't emit MACHINE/MACHINE_ARCH. Instead emit a TARGET_MACHINE=machine
instead.
diffstat:
usr.sbin/config/mkmakefile.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diffs (20 lines):
diff -r 27bd7124ecb6 -r 0e2f65c7e0ce usr.sbin/config/mkmakefile.c
--- a/usr.sbin/config/mkmakefile.c Sun Dec 03 07:05:21 2000 +0000
+++ b/usr.sbin/config/mkmakefile.c Sun Dec 03 07:06:15 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mkmakefile.c,v 1.46 2000/12/02 23:01:54 matt Exp $ */
+/* $NetBSD: mkmakefile.c,v 1.47 2000/12/03 07:06:15 matt Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -221,9 +221,7 @@
return (1);
if (fprintf(fp, "PARAM=-DMAXUSERS=%d\n", maxusers) < 0)
return (1);
- if (fprintf(fp, "MACHINE=%s\n", machine) < 0)
- return (1);
- if (fprintf(fp, "MACHINE_ARCH=%s\n", machinearch) < 0)
+ if (fprintf(fp, "TARGET_MACHINE=%s\n", machine) < 0)
return (1);
if (*srcdir == '/' || *srcdir == '.') {
if (fprintf(fp, "S=\t%s\n", srcdir) < 0)
Home |
Main Index |
Thread Index |
Old Index