diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-02-01 10:14:50 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-02-14 16:54:36 +0000 |
commit | d34691ce0c07b5437c0e4fa9aea4afd699530151 (patch) | |
tree | 96c76c136bbccb88eeb95a1363b27b68ddee718c /ci | |
parent | b5d12edb0842919ad5213e65db48d8cf8f0e676e (diff) |
ci: Use dash when building depends in centos build
Github-Pull: #24212
Rebased-From: fafc55a489d8f654dd7732b699c9bf51b5136b4b
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/05_before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh index b5301dbf03..48c8f894c4 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -49,7 +49,7 @@ if [ -z "$NO_DEPENDS" ]; then # CentOS has problems building the depends if the config shell is not explicitly set # (i.e. for libevent a Makefile with an empty SHELL variable is generated, leading to # an error as the first command is executed) - SHELL_OPTS="LC_ALL=en_US.UTF-8 CONFIG_SHELL=/bin/bash" + SHELL_OPTS="LC_ALL=en_US.UTF-8 CONFIG_SHELL=/bin/dash" else SHELL_OPTS="CONFIG_SHELL=" fi |