From 0d7f067f06a5c1c0629e23f78ce057d744ead18c Mon Sep 17 00:00:00 2001 From: mycroft Date: Thu, 10 Mar 1994 22:09:51 +0000 Subject: [PATCH] Fix `all:' line. --- usr.sbin/config.old/mkmakefile.c | 4 ++-- usr.sbin/config/mkmakefile.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.sbin/config.old/mkmakefile.c b/usr.sbin/config.old/mkmakefile.c index 214cd34710a4..857986741114 100644 --- a/usr.sbin/config.old/mkmakefile.c +++ b/usr.sbin/config.old/mkmakefile.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)mkmakefile.c 5.33 (Berkeley) 7/1/91";*/ -static char rcsid[] = "$Id: mkmakefile.c,v 1.21 1994/03/10 19:50:48 mycroft Exp $"; +static char rcsid[] = "$Id: mkmakefile.c,v 1.22 1994/03/10 22:09:51 mycroft Exp $"; #endif /* not lint */ /* @@ -449,7 +449,7 @@ do_load(f) fputs("all:", f); for (fl = conf_list; fl; fl = fl->f_next) if (fl->f_type == SYSTEMSPEC) - fprintf(f, " %s", fl->f_needs); + fprintf(f, " %s", fl->f_needs->name); putc('\n', f); } diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index 214cd34710a4..857986741114 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)mkmakefile.c 5.33 (Berkeley) 7/1/91";*/ -static char rcsid[] = "$Id: mkmakefile.c,v 1.21 1994/03/10 19:50:48 mycroft Exp $"; +static char rcsid[] = "$Id: mkmakefile.c,v 1.22 1994/03/10 22:09:51 mycroft Exp $"; #endif /* not lint */ /* @@ -449,7 +449,7 @@ do_load(f) fputs("all:", f); for (fl = conf_list; fl; fl = fl->f_next) if (fl->f_type == SYSTEMSPEC) - fprintf(f, " %s", fl->f_needs); + fprintf(f, " %s", fl->f_needs->name); putc('\n', f); }