aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1994-03-31 12:57:02 +0000
committerDavid MacKenzie <djm@cygnus>1994-03-31 12:57:02 +0000
commitd2d324f8310ce0c3bc21326f4c988591dbfd29c2 (patch)
treee9951d091f2d72dcf708da021e403c204694e74b /configure
parent06e6eb0e53edcac2603577d2f8db1ad85f562d95 (diff)
downloadfsf-binutils-gdb-d2d324f8310ce0c3bc21326f4c988591dbfd29c2.zip
fsf-binutils-gdb-d2d324f8310ce0c3bc21326f4c988591dbfd29c2.tar.gz
fsf-binutils-gdb-d2d324f8310ce0c3bc21326f4c988591dbfd29c2.tar.bz2
* configure: Support --silent, --quiet.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/configure b/configure
index 20145d8..7508ae0 100755
--- 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*)