From dd25544b6442b4c2f8a9855190c67896c4bb7046 Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Sun, 3 Oct 2021 15:37:02 +0200 Subject: [PATCH] ci/build.sh: autotools add support for CONFIGURE_OPTIONS for MinGW and Cygwin --- ci/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0