aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2025-09-24 01:42:21 -0700
committerYuri Victorovich <yuri@FreeBSD.org>2025-09-24 01:58:28 -0700
commit5ee33fdde40232b46e21752c66e74a205dc77141 (patch)
tree55bd919b73b4b960a079bcec43e97f2697a2fa0d
parent13fcf7be251d2dace9fbd4272760931ea9f9831f (diff)
devel/bashdb: Allow higher bash versions
-rw-r--r--devel/bashdb/files/patch-configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/bashdb/files/patch-configure b/devel/bashdb/files/patch-configure
index 698eaacce988..0eb34100b035 100644
--- a/devel/bashdb/files/patch-configure
+++ b/devel/bashdb/files/patch-configure
@@ -5,7 +5,7 @@
bash_5_or_greater=no
case "${bash_major}.${bash_minor}" in
- '5.0' | '5.0')
-+ '5.0' | '5.0' | '5.1' | '5.2' | '5.3')
++ '5.0' | '5.0' | '5.1' | '5.2' | '5.3' | '5.4' | '5.5')
bash_5_or_greater=yes
;;
*)