Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Make sure we find sage's zlib rather the system one.
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwifb committed May 22, 2017
1 parent a8db509 commit fd86b98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/pkgs/cryptominisat/spkg-install
Expand Up @@ -11,11 +11,11 @@ fi

cd src

cmake -DCMAKE_INSTALL_PREFIX="${SAGE_LOCAL}" -DUSE_GAUSS='ON' . || fail 'Error configuring cryptominisat'
cmake -DCMAKE_INSTALL_PREFIX="${SAGE_LOCAL}" -DUSE_GAUSS='ON' -DZLIB_ROOT="${SAGE_LOCAL}" . || fail 'Error configuring cryptominisat'

$MAKE || fail 'Error building cryptominisat'
$MAKE VERBOSE=ON || fail 'Error building cryptominisat'

$MAKE install || fail 'Error installing cryptominisat'
$MAKE VERBOSE=ON install || fail 'Error installing cryptominisat'

exit 0

0 comments on commit fd86b98

Please sign in to comment.