"make oldconfig" should show the defaults being taken

Dale R. Worley (worley@ariadne.com)
Mon, 13 Jan 1997 22:48:32 -0500


When executing "make oldconfig", the Configure script nicely prints
all the configuration questions whose answers are being taken from
your old .config file. But it doesn't print the answers, so the
resulting output is useless to document the configuration or explain
what the CONFIG_* symbols mean.

The following patch causes the default answers to be printed, followed
by "[defaulted]", so you know they are not user input.

Dale

--
Dale R. Worley					Ariadne Internet Services
Voice: +1 617-899-7949   Fax: +1 617-899-7946	E-mail: worley@ariadne.com
"Internet-based electronic commerce solutions to real business problems."
----------------------------------------------------------------------
--- scripts/Configure.orig      Mon Jan 13 11:09:46 1997
+++ scripts/Configure   Mon Jan 13 11:12:37 1997
@@ -108,7 +108,7 @@
 #
 function readln () {
        if [ "$DEFAULT" = "-d" -a -n "$3" ]; then
-               echo "$1"
+               echo "$1$2 [defaulted]"
                ans=$2
        else
                echo -n "$1"
----------------------------------------------------------------------