1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

shells/modernish: Make the build more verbose

Our official poudriere instances fail to build this port for unknown
reasons. Let's get some additional logs in order to fix the issue.

Reported by:	pkg-fallout
This commit is contained in:
Mateusz Piotrowski 2021-04-15 13:23:03 +02:00
parent 5fafc75c0f
commit 43ebfaa30d
2 changed files with 12 additions and 1 deletions

View File

@ -18,7 +18,7 @@ OPTIONS_DEFINE= DOCS EXAMPLES
do-install:
cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ./install.sh -d ${PREFIX} -D ${STAGEDIR} -n -s ${SH}
${SETENV} ${MAKE_ENV} ${SH} -x ./install.sh -d ${PREFIX} -D ${STAGEDIR} -n -s ${SH}
${RM} ${STAGEDIR}${DOCSDIR}/LICENSE
${MKDIR} ${STAGEDIR}${EXAMPLESDIR:H}

View File

@ -0,0 +1,11 @@
--- install.sh.orig 2021-04-15 11:21:11 UTC
+++ install.sh
@@ -119,7 +119,7 @@ case ${opt_s+s} in
( * ) MSH_SHELL=$opt_s
export MSH_SHELL
echo "Relaunching ${0##*/} with $MSH_SHELL..." >&2
- exec "$MSH_SHELL" "$MSH_PREFIX/${0##*/}" --relaunch "$@" ;;
+ exec "$MSH_SHELL" -x "$MSH_PREFIX/${0##*/}" --relaunch "$@" ;;
esac ;;
esac