From: Magnus Jacobsson Date: Sun, 3 Oct 2021 13:37:02 +0000 (+0200) Subject: ci/build.sh: autotools add support for CONFIGURE_OPTIONS for MinGW and Cygwin X-Git-Tag: 3.0.0~144^2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd25544b6442b4c2f8a9855190c67896c4bb7046;p=graphviz ci/build.sh: autotools add support for CONFIGURE_OPTIONS for MinGW and Cygwin --- diff --git a/ci/build.sh b/ci/build.sh index 3c73b7592..b95950f24 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -82,7 +82,7 @@ else elif [ "${OSTYPE}" = "cygwin" -o "${OSTYPE}" = "msys" ]; then if [ "${use_autogen:-no}" = "yes" ]; then ./autogen.sh - ./configure --prefix=$( pwd )/build | tee >(./ci/extract-configure-log.sh >${META_DATA_DIR}/configure.log) + ./configure ${CONFIGURE_OPTIONS:-} --prefix=$( pwd )/build | tee >(./ci/extract-configure-log.sh >${META_DATA_DIR}/configure.log) make make install tar cf - -C build . | xz -9 -c - > graphviz-${GV_VERSION}-${ARCH}.tar.xz @@ -90,7 +90,7 @@ else else tar xfz graphviz-${GV_VERSION}.tar.gz pushd graphviz-${GV_VERSION} - ./configure --prefix=$( pwd )/build | tee >(../ci/extract-configure-log.sh >../${META_DATA_DIR}/configure.log) + ./configure ${CONFIGURE_OPTIONS:-} --prefix=$( pwd )/build | tee >(../ci/extract-configure-log.sh >../${META_DATA_DIR}/configure.log) make make install popd