aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2015-06-14 00:31:22 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2015-06-14 00:31:22 +0000
commit8d769a021cfb23e8ad284ae26c2c4ec7362c5cbd (patch)
treee41fd6f975ee6634a4768d5b4f6815bcc62b1540 /usr.sbin
parent26b05dff324b91e7ff6137803f0fcd6f010e0392 (diff)
downloadsrc-8d769a021cfb23e8ad284ae26c2c4ec7362c5cbd.tar.gz
src-8d769a021cfb23e8ad284ae26c2c4ec7362c5cbd.zip
Fix typo - this upsets llvm/gcc-4.9, but not gcc-4.2 for some reason.
Notes
Notes: svn path=/head/; revision=284363
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/crunch/crunchgen/crunchgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/crunch/crunchgen/crunchgen.c b/usr.sbin/crunch/crunchgen/crunchgen.c
index 2cd53197822f..d5cf5da8f417 100644
--- a/usr.sbin/crunch/crunchgen/crunchgen.c
+++ b/usr.sbin/crunch/crunchgen/crunchgen.c
@@ -1110,7 +1110,7 @@ prog_makefile_rules(FILE *outmk, prog_t *p)
fprintf(outmk, " $(%s_LIBS)", p->ident);
fprintf(outmk, "\n");
- fprintf(outmk, "\t$(CC) -nostdlibs -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)",
+ fprintf(outmk, "\t$(CC) -nostdlib -dc -r -o %s.lo %s_stub.o $(%s_OBJPATHS)",
p->name, p->name, p->ident);
if (p->libs)
fprintf(outmk, " $(%s_LIBS)", p->ident);