From 31be56d0b89e72321022627a997f045a4cd3660c Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 19 Apr 1999 13:53:07 +0000 Subject: Slightly reorder the all: to make sure it's before any alternate kernel names for debugging etc. all: should now always be the first target. --- usr.sbin/config/mkmakefile.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index d654f92..f5289c8 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mkmakefile.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: mkmakefile.c,v 1.38 1999/04/17 14:41:40 peter Exp $"; + "$Id: mkmakefile.c,v 1.39 1999/04/18 13:36:29 peter Exp $"; #endif /* not lint */ /* @@ -782,14 +782,14 @@ do_load(f) register struct file_list *fl; register int first; - for (first = 1, fl = conf_list; fl; first = 0) - fl = fl->f_type == SYSTEMSPEC ? - do_systemspec(f, fl, first) : fl->f_next; - fputs("all:", f); + fputs("\nall:", f); for (fl = conf_list; fl; fl = fl->f_next) if (fl->f_type == SYSTEMSPEC) fprintf(f, " %s", fl->f_needs); - putc('\n', f); + fputs("\n\n", f); + for (first = 1, fl = conf_list; fl; first = 0) + fl = fl->f_type == SYSTEMSPEC ? + do_systemspec(f, fl, first) : fl->f_next; } static void -- cgit v1.1