Skip to content

Commit

Permalink
Add VERBOSE flag to make check:
Browse files Browse the repository at this point in the history
  make check VERBOSE=1
  • Loading branch information
gwsw committed Dec 27, 2022
1 parent 0e7c7cb commit 7fe9d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ installcheck:

check:
if [ -x less$(EXEEXT) ] && ./less$(EXEEXT) -V | grep -q LESSTEST; then :; else ${MAKE} clean; ${MAKE} LESSTEST=1; fi
objdir=$$(pwd); cd $(srcdir)/lesstest && ${MAKE} && ./runtest -e -l "$$objdir/less" lt
objdir=$$(pwd); rflags=""; if [ -z "${VERBOSE}" ]; then rflags=-e; fi; cd $(srcdir)/lesstest && ${MAKE} && ./runtest $$rflags -l "$$objdir/less" lt

TAGS:
cd ${srcdir} && etags *.c *.h
Expand Down

0 comments on commit 7fe9d24

Please sign in to comment.