- added missed call to _compute.chksum in ECDSAPriv - replaced all gpg wrapper fixtures in the unit test suite with gpg package - moved test suite gnupghome location to tests/gnupghome
11 lines
319 B
Bash
Executable File
11 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# homebrew is installed and so is a brewed openssl
|
|
if [[ $(uname) == "Darwin" ]] && command -v brew &>/dev/null && brew list openssl &>/dev/null; then
|
|
export ARCHFLAGS="-arch x86_64"
|
|
export LDFLAGS="-L/usr/local/opt/openssl/lib"
|
|
export CFLAGS="-I/usr/local/opt/openssl/include"
|
|
fi
|
|
|
|
exec tox $*
|