b4n commented on this pull request.
> @@ -37,7 +112,10 @@ script:
mkdir _build &&
cd _build &&
{ ../configure $CONFIGURE_FLAGS || { cat config.log; exit 1; } ; } &&
- make -j2 &&
- make -j2 check &&
- make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS";
+ if [ -z "$DISTCHECK_ONLY" ]; then
+ make -j2 VERBOSE=1 -n &&
+ make -j2 check;
+ else
+ make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS";
+ fi;
> I didn't completely understand this but let me know if the change I made is
> what you want.
now `DISTCHECK_ONLY` is never set, is it?
but stop worrying about this part and we'll see once the build stuff is dealt
with
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2067#discussion_r281946767