Skip to content

Commit

Permalink
Merge pull request #1054 from xexyl/install-v
Browse files Browse the repository at this point in the history
Disable install -v by default in install rule
  • Loading branch information
lcn2 authored Dec 31, 2024
2 parents 8e3e5c1 + f59ed2d commit 503b657
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ endif
# INSTALL_V= -v install with -v (debug / verbose mode
#
#INSTALL_V=
INSTALL_V= -v
INSTALL_V=

# where to install
#
Expand Down
4 changes: 2 additions & 2 deletions bug_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if [[ -z "$MAKE" ]]; then
MAKE="$(type -P make)"
fi
export MAKE
export BUG_REPORT_VERSION="1.0.5 2024-11-16"
export BUG_REPORT_VERSION="1.0.6 2024-12-31"
export FAILURE_SUMMARY=
export NOTICE_SUMMARY=
export DBG_LEVEL="0"
Expand All @@ -105,7 +105,7 @@ export T_FLAG=""
export X_FLAG=""
export L_FLAG=""
export EXIT_CODE=0
export MAKE_FLAGS="V=@ S=@ Q= E=@ I= Q_V_OPTION=1 INSTALL_V='-v' MAKE_CD_Q="
export MAKE_FLAGS="V=@ S=@ Q= E=@ I= Q_V_OPTION=1 INSTALL_V= MAKE_CD_Q="
export USAGE="usage: $0 [-h] [-V] [-v level] [-D level] [-t] [-x] [-l] [-L logfile] [-m make] [-M make_flags]
-h print help and exit
Expand Down
3 changes: 3 additions & 0 deletions jparse/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ still be able to test the party.json error file. This problem has to do with the
error message has to be exact and rebuilding the error location file was
problematic with the above updates.

To be more portable, don't use `-v` by default in `install` rule. If one needs
it, they can do `make INSTALL_V=-v install`.


## Release 2.1.9 2024-12-26

Expand Down
2 changes: 1 addition & 1 deletion jparse/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ endif
# INSTALL_V= -v install with -v (debug / verbose mode)
#
#INSTALL_V=
INSTALL_V= -v
INSTALL_V=

# where to install
#
Expand Down
6 changes: 3 additions & 3 deletions jparse/jparse_bug_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ if [[ -z "$MAKE" ]]; then
MAKE="$(type -P make)"
fi
export MAKE
export MAKE_FLAGS="V=@ S=@ Q= E=@ I= Q_V_OPTION=1 INSTALL_V='-v' MAKE_CD_Q="
export BUG_REPORT_VERSION="2.0.3 2024-11-30"
export MAKE_FLAGS="V=@ S=@ Q= E=@ I= Q_V_OPTION=1 INSTALL_V= MAKE_CD_Q="
export BUG_REPORT_VERSION="2.0.4 2024-12-31"
export FAILURE_SUMMARY=
export NOTICE_SUMMARY=
export DBG_LEVEL="0"
Expand Down Expand Up @@ -1464,7 +1464,7 @@ if [[ -z "$T_FLAG" ]]; then
# make all: compile everything before we do anything else
#
# the answer to life, the universe and everything conveniently makes all :-)
#
#
# ...and yes, this actually happened by chance, not deliberately, at least
# in the mkiocccentry repo. Later on, after this script in jparse was
# updated to be correct, the numbers were kept the same even after the tools
Expand Down
2 changes: 1 addition & 1 deletion jparse/test_jparse/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ endif
# INSTALL_V= -v install with -v (debug / verbose mode
#
#INSTALL_V=
INSTALL_V= -v
INSTALL_V=

# where to install
#
Expand Down
2 changes: 1 addition & 1 deletion soup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ endif
# INSTALL_V= -v install with -v (debug / verbose mode
#
#INSTALL_V=
INSTALL_V= -v
INSTALL_V=

# where to install
#
Expand Down
2 changes: 1 addition & 1 deletion test_ioccc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ endif
# INSTALL_V= -v install with -v (debug / verbose mode
#
#INSTALL_V=
INSTALL_V= -v
INSTALL_V=

# where to install
#
Expand Down

0 comments on commit 503b657

Please sign in to comment.