Skip to content

Commit

Permalink
ci_build.sh: actually honour CANBUILD_LIBGD_CGI=no
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Klimov <[email protected]>
  • Loading branch information
jimklimov committed Aug 12, 2024
1 parent 1476ad7 commit 015e238
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,11 @@ default|default-alldrv|default-alldrv:no-distcheck|default-all-errors|default-sp
CONFIG_OPTS+=("--with-cgi=auto")
fi
else
CONFIG_OPTS+=("--with-cgi=auto")
if [ "${CANBUILD_LIBGD_CGI-}" = "no" ] ; then
CONFIG_OPTS+=("--without-cgi")
else
CONFIG_OPTS+=("--with-cgi=auto")
fi
fi
;;
"default-alldrv:no-distcheck")
Expand Down

0 comments on commit 015e238

Please sign in to comment.