mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
duktape: fix installation of shared libraries
Now using `make install` to ensure the non-versioned and major-versioned library symlinks are created.
This commit is contained in:
parent
3d509de00b
commit
f2032af769
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
|
|||
install -d $out/bin
|
||||
install -m755 duk $out/bin/
|
||||
install -d $out/lib
|
||||
install -m755 libduktape* $out/lib/
|
||||
install -d $out/include
|
||||
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
|
||||
'';
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue