Skip to content

Commit

Permalink
Merge pull request #97757 from freezeboy/fix-lp_solve
Browse files Browse the repository at this point in the history
lp_solve: fix build
  • Loading branch information
risicle committed Sep 13, 2020
2 parents e2dffb6 + 3fc3fd1 commit 35ca475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/science/math/lp_solve/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ stdenv.mkDerivation rec {
cd lp_solve*/lpsolve55
bash ccc
mkdir -pv $out/lib
cp -v bin/*/* $out/lib
find bin -type f -exec cp -v "{}" $out/lib \;
)
(
cd lp_solve*/lp_solve
bash ccc
mkdir -pv $out/bin
cp -v bin/*/* $out/bin
find bin -type f -exec cp -v "{}" $out/bin \;
)
(
mkdir -pv $out/include
Expand Down

0 comments on commit 35ca475

Please sign in to comment.