diff options
author | peter <peter@FreeBSD.org> | 1999-04-19 13:53:07 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-19 13:53:07 +0000 |
commit | 31be56d0b89e72321022627a997f045a4cd3660c (patch) | |
tree | a2599dfc040427477fcb2396ce84508e697dee3a /usr.sbin/config | |
parent | 83df0d6078d5f4ca74c940182cc373efffec488b (diff) | |
download | FreeBSD-src-31be56d0b89e72321022627a997f045a4cd3660c.zip FreeBSD-src-31be56d0b89e72321022627a997f045a4cd3660c.tar.gz |
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.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/mkmakefile.c | 12 |
1 files changed, 6 insertions, 6 deletions
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 |