From b56a50827ffdc43dd3b6a32898f8f184eeea7234 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Tue, 18 Feb 2020 20:58:47 +0100 Subject: configure: Set SLEEP=no now to disable warning sleeps Allow setting SLEEP=no to disable sleep on warnings like ../configure SLEEP=no --prefix=/foo/bar ... This is implemented with GP_SLEEP and gp_sleep similar to m4sh's AS_ECHO and $as_echo. --- .travis-script.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to '.travis-script.sh') diff --git a/.travis-script.sh b/.travis-script.sh index 6c9297faa..e6ebe7514 100644 --- a/.travis-script.sh +++ b/.travis-script.sh @@ -22,9 +22,8 @@ rel_builddir="_build-${buildid}" mkdir "${rel_builddir}" cd "${rel_builddir}" -SLEEP="$(which true)" -if ../configure SLEEP="$SLEEP" --prefix="$abs_prefixdir" "$@" +if ../configure SLEEP=no --prefix="$abs_prefixdir" "$@" then echo "Configure successful." else -- cgit v1.2.1