summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1995-10-23 10:29:11 +0000
committerdg <dg@FreeBSD.org>1995-10-23 10:29:11 +0000
commita78edb5e808542b5135f0a41d0cb53598ef88142 (patch)
tree16615d54179263cc1fd2eb4c3e2a6805c1252d78 /usr.sbin/config
parent863d0ce972cdb93325e45cd47ff4af72a2184c74 (diff)
downloadFreeBSD-src-a78edb5e808542b5135f0a41d0cb53598ef88142.zip
FreeBSD-src-a78edb5e808542b5135f0a41d0cb53598ef88142.tar.gz
Don't pre-processor define 'ident'. This has subtle consequences for people
who don't carefully consider their choice for the machine name. The same functionality can still be had with an "option", so nothing is lost.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r--usr.sbin/config/mkmakefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index 0e0bdb6..7313f46 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -154,7 +154,7 @@ makefile()
exit(1);
}
fprintf(ofp, "KERN_IDENT=%s\n", raise(ident));
- fprintf(ofp, "IDENT=-D%s", raise(ident));
+ fprintf(ofp, "IDENT=");
if (profiling)
fprintf(ofp, " -DGPROF");
if (cputype == 0) {
OpenPOWER on IntegriCloud