nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 665 B view raw
1diff --git a/configure.ac b/configure.ac 2index cf96d6f..3a621bc 100644 3--- a/configure.ac 4+++ b/configure.ac 5@@ -102,13 +102,13 @@ bash_version=`$SH_PROG --version` 6 [bash_major=`$SH_PROG -c 'echo ${BASH_VERSINFO[0]}'`] 7 [bash_minor=`$SH_PROG -c 'echo ${BASH_VERSINFO[1]}'`] 8 bash_5_or_greater=no 9-case "${bash_major}.${bash_minor}" in 10- 'OK_BASH_VERS' | '5.0' | '5.1') 11+case "${bash_major}" in 12+ '5') 13 bash_5_or_greater=yes 14 ;; 15 *) 16 AC_MSG_WARN([You have Bash $bash_version installed.]) 17- AC_MSG_ERROR([This package is only known to work with Bash 5.0 or 5.1]) 18+ AC_MSG_ERROR([This package is only known to work with Bash 5]) 19 ;; 20 esac 21