use correct binary on native windows builds

This commit is contained in:
Brent Cook 2015-06-05 02:31:22 -05:00 committed by Brent Cook
parent d5a09e199a
commit 8eec2f485a
3 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,9 @@
#Test DSA certificate generation of openssl
cmd=../apps/openssl
if [ -e ../apps/openssl.exe ]; then
cmd=../apps/openssl.exe
fi
if [ -z $srcdir ]; then
srcdir=.

View File

@ -3,6 +3,9 @@
test=p
cmd=../apps/openssl
if [ -e ../apps/openssl.exe ]; then
cmd=../apps/openssl.exe
fi
cat openssl.cnf >$test;

View File

@ -5,6 +5,9 @@
#Test RSA certificate generation of openssl
cmd=../apps/openssl
if [ -e ../apps/openssl.exe ]; then
cmd=../apps/openssl.exe
fi
if [ -z $srcdir ]; then
srcdir=.