diff options
author | Brent Cook <busterb@gmail.com> | 2014-07-10 17:26:22 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2014-07-10 17:26:22 -0500 |
commit | 2ce79c599beb6cb083893ee1052043ff34d9a27e (patch) | |
tree | 0f3894c88d52749d935ba47d4c2b9fc74974bfe4 /tests | |
parent | 222a38f169e3d463dbf37fb20f947329e720724b (diff) | |
download | portable-2ce79c599beb6cb083893ee1052043ff34d9a27e.tar.gz portable-2ce79c599beb6cb083893ee1052043ff34d9a27e.tar.bz2 portable-2ce79c599beb6cb083893ee1052043ff34d9a27e.zip |
fix out of tree builds for ssl test
ssl tests need to find the openssl binary relative to the build,
not the source, directory
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/ssltest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ssltest.sh b/tests/ssltest.sh index 90701f5..89863ea 100755 --- a/tests/ssltest.sh +++ b/tests/ssltest.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | set -e | 2 | set -e |
3 | export PATH=$srcdir/../apps:$PATH | 3 | export PATH=../apps:$PATH |
4 | $srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem | 4 | $srcdir/testssl $srcdir/server.pem $srcdir/server.pem $srcdir/ca.pem |