Skip to content

Commit 38850c4

Browse files
committed
Allow running on Bash 5.2
1 parent b6f2798 commit 38850c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ bash_version=`$SH_PROG --version`
103103
[bash_minor=`$SH_PROG -c 'echo ${BASH_VERSINFO[1]}'`]
104104
bash_5_or_greater=no
105105
case "${bash_major}.${bash_minor}" in
106-
'OK_BASH_VERS')
106+
'OK_BASH_VERS' | '5.2' )
107107
bash_5_or_greater=yes
108108
;;
109109
*)
110110
AC_MSG_WARN([You have Bash $bash_version installed.])
111-
AC_MSG_ERROR([This package is only known to work with Bash 5.3])
111+
AC_MSG_ERROR([This package is only known to work with Bash 5.2 or Bash 5.3])
112112
;;
113113
esac
114114

0 commit comments

Comments
 (0)