Commit bdc7b4fb by Jeremy Kemper

Merge pull request #310 from znz/fix-exit-status-of-install-with-verbose

fix exit status of install with verbose
parents 24a12aee f63cbf81
......@@ -700,7 +700,8 @@ fi
exec 4<> "$LOG_PATH" # open the log file at fd 4
if [ -n "$VERBOSE" ]; then
tail -f "$LOG_PATH" &
trap "kill 0" SIGINT SIGTERM EXIT
TAIL_PID=$!
trap "kill $TAIL_PID" SIGINT SIGTERM EXIT
fi
export LDFLAGS="-L'${PREFIX_PATH}/lib' ${LDFLAGS}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment