diff options
author | Pierre Ossman <ossman@cendio.se> | 2022-10-14 09:26:18 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2022-10-14 13:23:23 +0200 |
commit | 3cfd8724a42ed66597da05f223344b3082fd2eb6 (patch) | |
tree | 7e79438748a88aa3d6d0b86c96d82bc3e2f2c1a4 /.github/containers/centos9 | |
parent | 966fc36d9ddb7bc3eecc09ad83066e0ef7dd1b2a (diff) | |
download | tigervnc-3cfd8724a42ed66597da05f223344b3082fd2eb6.tar.gz tigervnc-3cfd8724a42ed66597da05f223344b3082fd2eb6.zip |
Hack around missing xorg-x11-font-utils package
This is missing in the CentOS 9 repositories for some reason. Download
it directly from the build system until this can be fixed.
Diffstat (limited to '.github/containers/centos9')
-rwxr-xr-x | .github/containers/centos9/build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/containers/centos9/build.sh b/.github/containers/centos9/build.sh index ae2371b6..781889b3 100755 --- a/.github/containers/centos9/build.sh +++ b/.github/containers/centos9/build.sh @@ -34,6 +34,7 @@ sed -i "s/@VERSION@/${VERSION}/" ${CURDIR}/rpmbuild/SPECS/tigervnc.spec docker run --volume ${CURDIR}/rpmbuild:/home/rpm/rpmbuild --interactive --rm tigervnc/${DOCKER} \ bash -e -x -c " sudo dnf install -y xorg-x11-server-devel; + sudo dnf install -y https://kojihub.stream.centos.org/kojifiles/packages/xorg-x11-font-utils/7.5/53.el9/x86_64/xorg-x11-font-utils-7.5-53.el9.x86_64.rpm; sudo dnf builddep -y ~/rpmbuild/SPECS/tigervnc.spec; sudo chown 0.0 ~/rpmbuild/SOURCES/*; sudo chown 0.0 ~/rpmbuild/SPECS/*; |