Created attachment 1372158 [details] patch that fixes it Description of problem: `make V=1` is broken — no commands are printed whatsoever. At the same time, `make V=0` *also* is broken in that no summary lines ("CC foo.o") are printed, either. Kill the annoying hardcoded --quiet in configure.ac, since it seems to override everything that automake offers. Version-Release number of selected component (if applicable): 3.12.0 How reproducible: make V=1 make V=0 Actual results: $ make V=1 Making all in libglusterfs Making all in src Making all in src/gfdb Making all in rpc ... $ make V=0 Making all in libglusterfs Making all in src Making all in src/gfdb Making all in rpc ... Expected results: $ make V=1 -> Making all in libglusterfs Making all in src bison -y -p graphyy -d ./graph.y /usr/bin/python ./gen-defaults.py ./defaults-tmpl.c > defaults.c /usr/bin/python ../../events/eventskeygen.py C_HEADER cp ../../rpc/rpc-lib/src/protocol-common.h . flex -Pgraphyy -t ./graph.l > graph.lex.c make --no-print-directory all-am /bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/uuid -D_FILE_ /bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../.. -I/usr/include/uuid -D_FILE_ $ make V=0 Making all in libglusterfs Making all in src bison -y -p graphyy -d ./graph.y /usr/bin/python ./gen-defaults.py ./defaults-tmpl.c > defaults.c /usr/bin/python ../../events/eventskeygen.py C_HEADER cp ../../rpc/rpc-lib/src/protocol-common.h . flex -Pgraphyy -t ./graph.l > graph.lex.c make --no-print-directory all-am CC libglusterfs_la-dict.lo CC libglusterfs_la-xlator.lo CC libglusterfs_la-logging.lo CC libglusterfs_la-hashfn.lo CC libglusterfs_la-common-utils.lo CC libglusterfs_la-timer.lo CC libglusterfs_la-inode.lo Additional info:
Release 3.12 has been EOLd and this bug was still found to be in the NEW state, hence moving the version to mainline, to triage the same and take appropriate actions.
With glusterfs-6.0 and latest master, this is working properly.