mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
libxcomp: Fix build
The mkdirs were failing since the 'out' and 'lib' directories are already created by 'make install' (#7524 fallout). And in fact, the entire postInstall script is doing the exact same thing as installPhase, so it can be simply dropped.
This commit is contained in:
parent
e6ca18e9bf
commit
6b829e7302
@ -25,11 +25,4 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
mkdir $out/lib
|
|
||||||
cp libXcomp.so* $out/lib
|
|
||||||
mkdir $out/include
|
|
||||||
cp NX.h $out/include
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user