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:

- Have configure run quiet if started by make in silent mode
  https://trac.sagemath.org/ticket/30258

- Let `./configure --enable-silent-rules` default to `make V=0`
  https://trac.sagemath.org/ticket/21589

I'll try to follow some suggested approaches there, or
carefully read the solution if someone else solves it.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/ed1f363e-806c-4e6a-8431-fff66f63792bo%40googlegroups.com.

Reply via email to