diff options
author | MarcoFalke <falke.marco@gmail.com> | 2022-02-01 10:14:50 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2022-02-01 10:15:17 +0100 |
commit | fafc55a489d8f654dd7732b699c9bf51b5136b4b (patch) | |
tree | 7c4ba8e1b2cddfa0a136e292248a6e34615a8201 | |
parent | fa33236e77974de13a329c8eda34ebc842d1aa01 (diff) |
ci: Use dash when building depends in centos build
-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 4feff4edda..1d67355d27 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -51,7 +51,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 |