1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

* Workaround for the wrong <semaphore.h> getting installed. This

appears to be a regression:
  http://www.mail-archive.com/debian-glibc@lists.debian.org/msg31543.html 

svn path=/nixpkgs/trunk/; revision=6885
This commit is contained in:
Eelco Dolstra 2006-10-28 10:17:08 +00:00
parent 3a6754f6bb
commit b8f17a1e59

View file

@ -52,6 +52,11 @@ postInstall() {
fi
rm $out/etc/ld.so.cache
(cd $out/include && ln -s $kernelHeaders/include/* .) || exit 1
# Workaround for the wrong <semaphore.h> getting installed. This
# appears to be a regression:
# http://www.mail-archive.com/debian-glibc@lists.debian.org/msg31543.html
cp linuxthreads/semaphore.h $out/include
}