Change the perennially annoying reminder to "make depend" (which may or

may not be desired if you're just going to blow the kernel away again later)
and substitute one that tells the user where the new kernel build
directory actually IS, which can at least be argued to be useful information
in all cases.
Reviewed by:	davidg
This commit is contained in:
Jordan K. Hubbard 1995-05-03 20:16:57 +00:00
parent fbe3680005
commit 786a5cad11
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8248

View File

@ -189,7 +189,7 @@ usage: fputs("usage: config [-gpn] sysname\n", stderr);
makefile(); /* build Makefile */
headers(); /* make a lot of .h files */
swapconf(); /* swap config files */
printf("Don't forget to run \"make depend\"\n");
printf("Kernel build directory is %s\n", p);
exit(0);
}