1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Description: Fix FTBFS with bash 5.2
Author: Jerry James <loganjerry@gmail.com>
Forwarded: no
Last-Update: 2022-10-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/expr/mkexpr.orig 2020-06-19 10:59:27.000000000 -0600
+++ b/src/expr/mkexpr 2022-10-11 14:28:31.120453409 -0600
@@ -16,6 +16,7 @@
#
copyright=2010-2014
+shopt -u patsub_replacement
filename=`basename "$1" | sed 's,_template,,'`
template_rel="<CVC4>/"$(realpath --relative-to $CMAKE_SOURCE_DIR $1)
--- a/src/expr/mkkind.orig 2020-06-19 10:59:27.000000000 -0600
+++ b/src/expr/mkkind 2022-10-11 14:34:17.008996126 -0600
@@ -15,6 +15,7 @@
#
copyright=2010-2014
+shopt -u patsub_replacement
filename=`basename "$1" | sed 's,_template,,'`
template_rel="<CVC4>/"$(realpath --relative-to $CMAKE_SOURCE_DIR $1)
--- a/src/expr/mkmetakind.orig 2020-06-19 10:59:27.000000000 -0600
+++ b/src/expr/mkmetakind 2022-10-11 14:34:32.248020036 -0600
@@ -18,6 +18,7 @@
#
copyright=2010-2014
+shopt -u patsub_replacement
template_rel="<CVC4>/"$(realpath --relative-to $CMAKE_SOURCE_DIR $1)
cat <<EOF
/
|