@b4n commented on this pull request.
>
if [ "$NOCONFIGURE" = 1 ]; then
echo "Done. configure skipped."
exit 0;
fi
-exec ./configure "$@"
+
+echo "Running $srcdir/configure $@ ..."
+$srcdir/configure "$@" && echo "Now type 'make' to compile." || exit 1
```suggestion
"$srcdir/configure" "$@" && echo "Now type 'make' to compile." || exit 1
```
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1434#pullrequestreview-2866797668
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1434/review/[email protected]>