From b8f17a1e59a4dff93507e51f03db6043440275fe Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 28 Oct 2006 10:17:08 +0000 Subject: [PATCH] * Workaround for the wrong 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 --- pkgs/development/libraries/glibc/builder.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/glibc/builder.sh b/pkgs/development/libraries/glibc/builder.sh index 177e8482c90..9d2480d9999 100644 --- a/pkgs/development/libraries/glibc/builder.sh +++ b/pkgs/development/libraries/glibc/builder.sh @@ -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 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 }