* configure: Support --silent, --quiet.
authorDavid MacKenzie <djm@cygnus>
Thu, 31 Mar 1994 12:57:02 +0000 (12:57 +0000)
committerDavid MacKenzie <djm@cygnus>
Thu, 31 Mar 1994 12:57:02 +0000 (12:57 +0000)
ChangeLog
configure

index f6e9eb9b0e8d912840b4e47641960d9b17095492..acd7154d5ae11f78087fa45383277468badad6bb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Mar 31 04:55:57 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
+
+       * configure: Support --silent, --quiet.
+
 Wed Mar 30 21:37:38 1994  David J. Mackenzie  (djm@rtl.cygnus.com)
 
        * configure: Support --disable-FEATURE.
index 20145d83e10cc89dfcf0b671d3e807b105ea5657..7508ae09cf8d34dd64245d6f2e50f444fedaa727 100755 (executable)
--- a/configure
+++ b/configure
@@ -217,15 +217,19 @@ do
        --rm)
                removing=--rm
                ;;
-       --site* | --si*)
+       --silent | --sil* | --quiet | --q*)
+               redirect=">/dev/null"
+               verbose=--silent
+               ;;
+       --site* | --sit*)
                site=$optarg
                site_option="--site=$optarg"
                ;;
        --srcdir*/ | --sr*/)
                 # Remove trailing slashes.  Otherwise, when the file name gets
-                # bolted into an object file as debug info, it has two slashes in
-                # it.  Ordinarily this is ok, but emacs takes double slash to
-                # mean "forget the first part".
+                # bolted into an object file as debug info, it has two slashes
+                # in it.  Ordinarily this is ok, but emacs takes double slash
+                # to mean "forget the first part".
                srcdir=`echo $optarg | sed -e 's:/$::'`
                ;;
        --srcdir* | --sr*)
This page took 0.02803 seconds and 4 git commands to generate.