Thanks. The relevant portions of the `bootstrap` script are:
```
usage () {
echo >&2 "Usage: $0 [-d|-D|-s] [-u <URL>] [-h]"
}
```
```
# Parse options
SAVE=no
DOWNLOAD=no
ALWAYSDOWNLOAD=no
CONFTARBALL_URL=""
while getopts "Ddshu:" OPTION
do
case "$OPTION" in
D) ALWAYSDOWNLOAD=yes; DOWNLOAD=yes;;
d) DOWNLOAD=yes;;
s) SAVE=yes;;
u) CONFTARBALL_URL="$OPTARG"; ALWAYSDOWNLOAD=yes; DOWNLOAD=yes;;
h) usage; exit 0;;
?) usage; exit 2;;
esac
done
CONFBALL="upstream/configure-$CONFVERSION.tar.gz"
```
No quiet or silent mode; `-s` is for "save", not "silent".
Conclusion: sorry for all the noise about the quiet.
Bootstrap does not make that much noise anyway.
Here are two tickets that would enable some more quiet:
- Let `./configure --enable-silent-rules` default to `make V=0`
I'll try to follow some suggested approaches there, or
carefully read the solution if someone else solves it.