Module Name: src Committed By: rillig Date: Sat Mar 19 14:35:13 UTC 2022
Modified Files: src: Makefile Log Message: Makefile: fix location of postinstall program for MAKEVERBOSE > 2 If MAKEVERBOSE > 2, each shell command from a make target is echoed. This resulted in two additional words ending up in the variable _POSTINSTALL. Noticed by Brad Harder. Before: $ make -v _POSTINSTALL MAKEVERBOSE=3 echo .../usr.sbin/postinstall .../usr.sbin/postinstall/postinstall ... After: $ make -v _POSTINSTALL MAKEVERBOSE=3 .../usr.sbin/postinstall/postinstall ... To generate a diff of this commit: cvs rdiff -u -r1.333 -r1.334 src/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.