* Fix dietlibc on x86_64.
svn path=/nixpkgs/trunk/; revision=11014
This commit is contained in:
parent
40a9071596
commit
ac8f511b88
|
@ -25,6 +25,11 @@ postInstall() {
|
||||||
# from the dietlibc asm to the kernel-headers asm.
|
# from the dietlibc asm to the kernel-headers asm.
|
||||||
ln -s $kernelHeaders/include/asm/* $out/include/asm/ || true
|
ln -s $kernelHeaders/include/asm/* $out/include/asm/ || true
|
||||||
|
|
||||||
|
# Make asm-x86_64 etc. available.
|
||||||
|
for i in $kernelHeaders/include/asm-*; do
|
||||||
|
ln -s $i $out/include/
|
||||||
|
done
|
||||||
|
|
||||||
# Idem for include/linux.
|
# Idem for include/linux.
|
||||||
ln -s $kernelHeaders/include/linux/* $out/include/linux/ || true
|
ln -s $kernelHeaders/include/linux/* $out/include/linux/ || true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue