1234567891011121314151617181920212223242526272829303132333435363738 |
- #! /bin/sh
- . test-init.sh
- : > Makefile.am
- $ACLOCAL
- cp configure.ac configure.tmpl
- for args in '' 'yes' 'no'; do
- cp -f configure.tmpl configure.ac
- test x"$args" = x || echo "AM_SILENT_RULES([$args])/" >> configure.ac
- cat configure.ac
- $AUTOCONF --force
- grep_configure_help --enable-silent-rules \
- ' less verbose build.*\(undo.*"make V=1".*\)'
- grep_configure_help --disable-silent-rules \
- ' verbose build.*\(undo.*"make V=0".*\)'
- done
- :
|