Skip to content

Commit

Permalink
copy libs from lib64 if available in build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
scholarsmate committed May 26, 2022
1 parent 857de5e commit f913797
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ cpack --config build-shared-$type/CPackSourceConfig.cmake
cpack --config build-shared-$type/CPackConfig.cmake

rm -rf ./lib/*
cp -av ${install_dir}/lib/* ./lib
if [ -d ${install_dir}/lib64/ ]; then
cp -av ${install_dir}/lib64/* ./lib
else
cp -av ${install_dir}/lib/* ./lib
fi
sbt headerCheckAll
sbt installM2
sbt test
Expand Down

0 comments on commit f913797

Please sign in to comment.