diff options
author | imp <imp@FreeBSD.org> | 2003-04-04 04:17:14 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2003-04-04 04:17:14 +0000 |
commit | 106c479ccdbfe94b401575abbe484f6d96d20994 (patch) | |
tree | ef36f788fc1bc788b61c8af1ef99e5e69bb7bfd6 | |
parent | 5926797d5461f3fbb87d81cca2d176413178c7e5 (diff) | |
download | FreeBSD-src-106c479ccdbfe94b401575abbe484f6d96d20994.zip FreeBSD-src-106c479ccdbfe94b401575abbe484f6d96d20994.tar.gz |
No need to check to see if we're running a version of FreeBSD 3.0 current or
newer anymore.
-rw-r--r-- | usr.bin/make/main.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c index 24211ba..226ca94 100644 --- a/usr.bin/make/main.c +++ b/usr.bin/make/main.c @@ -497,8 +497,6 @@ main(int argc, char **argv) if (stat(curdir, &sa) == -1) err(2, "%s", curdir); -#if defined(__i386__) && defined(__FreeBSD_version) && \ - __FreeBSD_version > 300003 /* * PC-98 kernel sets the `i386' string to the utsname.machine and * it cannot be distinguished from IBM-PC by uname(3). Therefore, @@ -518,7 +516,6 @@ main(int argc, char **argv) machine = "pc98"; } } -#endif /* * Get the name of this type of MACHINE from utsname |