X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Fbabeltrace%2Frelease.sh;h=c120a8b30fbce16c54d7ee48b857c0e950b15525;hb=HEAD;hp=beff09718a1652052268d61b8a8d6192703c8d53;hpb=51c9c62db1805a4cdd96be18df4082f1ac5d81c5;p=lttng-ci.git diff --git a/scripts/babeltrace/release.sh b/scripts/babeltrace/release.sh index beff097..c120a8b 100644 --- a/scripts/babeltrace/release.sh +++ b/scripts/babeltrace/release.sh @@ -1,7 +1,7 @@ #!/bin/bash # # Copyright (C) 2015 Jonathan Rajotte-Julien -# Copyright (C) 2020 Michael Jeanson +# Copyright (C) 2023 Michael Jeanson # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,6 +25,8 @@ vercomp () { return 0 fi local IFS=. + # Ignore the shellcheck warning, we want splitting to happen based on IFS. + # shellcheck disable=SC2206 local i ver1=($1) ver2=($2) # fill empty fields in ver1 with zeros for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do @@ -102,7 +104,7 @@ PACKAGE_VERSION=${PACKAGE_VERSION//\-pre*/} # Version specific configurations if vergte "$PACKAGE_VERSION" "2.0"; then BASENAME="babeltrace2" - CONF_OPTS=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins") + CONF_OPTS=("--enable-python-bindings" "--enable-python-bindings-doc" "--enable-python-plugins" "--disable-Werror") # Enable dev mode by default for BT 2.0 builds #export BABELTRACE_DEBUG_MODE=1