xnee: fix build w/glibc-2.34

ChangeLog: https://hydra.nixos.org/build/163058159
This commit is contained in:
Maximilian Bosch 2022-01-09 16:58:31 +01:00
parent 4427e547ca
commit 81e0c947ec
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -15,6 +15,12 @@ stdenv.mkDerivation rec {
do
sed -i "$i" -e's|/bin/bash|${stdenv.shell}|g ; s|/usr/bin/env bash|${stdenv.shell}|g'
done
# Fix for glibc-2.34. For some reason, `LIBSEMA="CCC"` is added
# if `sem_init` is part of libc which causes errors like
# `gcc: error: CCC: No such file or directory` during the build.
substituteInPlace configure \
--replace 'LIBSEMA="CCC"' 'LIBSEMA=""'
'';
buildInputs =