From 51f0bfca68829f93b8c228a35c9b8a4e059941c8 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 4 Mar 2008 06:08:59 +0000 Subject: [PATCH] Note 7.0 was the first version that FreeBSD/pc98 had a MACHINE of pc98 instead of i386. --- usr.bin/make/main.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index b683f8547cf..9fde44128d1 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -932,14 +932,13 @@ main(int argc, char **argv) #endif /* - * FreeBSD/pc98 kernel used to set the utsname.machine to - * "i386", and MACHINE was defined as "i386", so it could - * not be distinguished from FreeBSD/i386. Therefore, we - * had to check machine.ispc98 and adjust the MACHINE - * variable. - * NOTE: The code is still here to be able to compile new - * make binary on old FreeBSD/pc98 systems, and have the - * MACHINE variable set properly. + * Prior to 7.0, FreeBSD/pc98 kernel used to set the + * utsname.machine to "i386", and MACHINE was defined as + * "i386", so it could not be distinguished from FreeBSD/i386. + * Therefore, we had to check machine.ispc98 and adjust the + * MACHINE variable. NOTE: The code is still here to be able + * to compile new make binary on old FreeBSD/pc98 systems, and + * have the MACHINE variable set properly. */ if ((machine = getenv("MACHINE")) == NULL) { int ispc98;