summaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2009-10-19 19:46:58 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2009-10-19 19:46:58 +0000
commit94bbd10d6310ee51294332b859d32b26b05d932a (patch)
treefbc930fef008997a38a955318ba7d4dc0ce85536 /usr.sbin/config/mkmakefile.c
parent5259d23908f7083fed7209881bce35238f69875a (diff)
Correct a target name so that we don't rebuild vers.o (and then
bsd) unless some other object has changed. Rebuild and reinstall in /usr/src/usr.sbin/config/ after updating! "I like it" deraadt@
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index 187febaf11b..7c51d4c78c8 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mkmakefile.c,v 1.31 2008/08/14 10:18:34 espie Exp $ */
+/* $OpenBSD: mkmakefile.c,v 1.32 2009/10/19 19:46:57 guenther Exp $ */
/* $NetBSD: mkmakefile.c,v 1.34 1997/02/02 21:12:36 thorpej Exp $ */
/*
@@ -521,7 +521,7 @@ emitload(FILE *fp)
if (fprintf(fp, "%s: ${SYSTEM_DEP} swap%s.o", nm, swname) < 0)
return (1);
if (first) {
- if (fputs(" newvers", fp) < 0)
+ if (fputs(" vers.o", fp) < 0)
return (1);
first = 0;
}