Skip to content
Snippets Groups Projects
Commit 1f57e67d authored by Hallvard Furuseth's avatar Hallvard Furuseth
Browse files

Silence libtool if `make -s' is running

parent 1fe5f590
No related branches found
No related tags found
No related merge requests found
......@@ -207,6 +207,13 @@ if test -n "$prevopt"; then
exit 1
fi
case "$show $MFLAGS -$MAKEFLAGS" in
:\ *) : ;;
*\ -*s*)
# Be silent inside 'make -s'
expr " $MFLAGS -$MAKEFLAGS" : '.* -[a-zA-Z]*s' >/dev/null && show=: ;;
esac
if test -z "$show_help"; then
# Infer the operation mode.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment