mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00: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;
|
||||
|
||||
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