summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2015-09-23 14:22:07 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-09-23 14:22:09 +0200
commit0ab42164bd294970997ac8d9111ca19fea72b56f (patch)
treeecd83efc5fe48d903de77a607c9f7c46a95c5fcd
parent6758d75e06e2a624623c49bdbaa5281c92388072 (diff)
downloadptxdist-2015.09.0.tar.gz
ptxdist-2015.09.0.tar.xz
configure: update needed bash versionptxdist-2015.09.0
At least bash version 4.2 is needed for 'exec {readfd}< "${fifo}"' in scripts/lib/ptxd_make_serialize.sh Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index d366a6b47..7d1ceb498 100644
--- a/configure.ac
+++ b/configure.ac
@@ -106,9 +106,9 @@ fi
# though the result /could/ be available to us directly as $BASH_VERSION we
# don't want to use, or trust it, incase the user is specifying a different
# bash executable.
-if `$BASH -c '[[ "$BASH_VERSION" \< "2.04" ]]'` ; then
+if `$BASH -c '[[ "$BASH_VERSION" \< "4.2" ]]'` ; then
AC_MSG_ERROR([
-$PACKAGE_NAME requires at least version 2.04 of bash, you can download a current
+$PACKAGE_NAME requires at least version 4.2 of bash, you can download a current
version of bash from ftp.gnu.org
])
fi