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}" \
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to