svn commit: r359426 - head/usr.bin/kyua

Brooks Davis brooks at FreeBSD.org
Sun Mar 29 19:48:36 UTC 2020


Author: brooks
Date: Sun Mar 29 19:48:28 2020
New Revision: 359426
URL: https://svnweb.freebsd.org/changeset/base/359426

Log:
  Fix build with src on a noexec filesystem.
  
  ${SH} expands to nothing on src builds so this worked by accident.  Use
  a bare "sh" instead.
  
  PR:		245086
  Reported by:	pkubaj
  Sponsored by:	DARPA

Modified:
  head/usr.bin/kyua/Makefile

Modified: head/usr.bin/kyua/Makefile
==============================================================================
--- head/usr.bin/kyua/Makefile	Sun Mar 29 19:16:14 2020	(r359425)
+++ head/usr.bin/kyua/Makefile	Sun Mar 29 19:48:28 2020	(r359426)
@@ -52,7 +52,7 @@ CLEANFILES+=	${MAN}
 .PATH: ${KYUA_SRCDIR}/doc
 .for man in ${MAN}
 ${man}: ${man}.in
-	${SH} ${KYUA_SRCDIR}/doc/manbuild.sh \
+	sh ${KYUA_SRCDIR}/doc/manbuild.sh \
 	    -v "CONFDIR=${KYUA_CONFDIR}" \
 	    -v "DOCDIR=${KYUA_DOCDIR}" \
 	    -v "EGDIR=${KYUA_EGDIR}" \


More information about the svn-src-all mailing list