mirror of
https://github.com/systemd/systemd.git
synced 2024-12-26 03:22:00 +03:00
3e9dd3cde0
This was added for opensuse to make the tests pass but doesn't seem to be needed anymore after recent changes so let's drop it.
13 lines
313 B
Bash
Executable File
13 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
if [ "$1" = "build" ]; then
|
|
. /etc/os-release
|
|
|
|
if [ "$ID" = "centos" ] && [ "$VERSION" = "8" ]; then
|
|
alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
|
|
alternatives --set python3 /usr/bin/python3.9
|
|
fi
|
|
fi
|