Skip to content

Commit

Permalink
Also install static suitesparse libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Apr 24, 2020
1 parent bc4446f commit 09689e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/suitesparse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ tar xzf ${src} \
CFOPENMP="@OPENMP_CXXFLAGS@" LAPACK="@LAPACK@" BLAS="@BLAS@" \
> ${log} 2>&1 \
&& cp -a ./lib/* "@AUX_PREFIX@/lib/" \
&& cp -a ./include/* "@AUX_PREFIX@/include/"
&& cp -a ./include/* "@AUX_PREFIX@/include/" \
&& find . -name "*.a" -exec cp -a '{}' "@AUX_PREFIX@/lib/" \;

if [ $? -ne 0 ]; then
echo "Failed to build ${pkg}" >&2
Expand Down

0 comments on commit 09689e2

Please sign in to comment.