aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroboo <robo.karasek@gmail.com>2016-10-10 17:00:02 +0200
committerroboo <robo.karasek@gmail.com>2016-10-10 17:00:02 +0200
commit45c7334b90bfea01b0ddd452545134292b9e3ebb (patch)
treef535256d6790090d1b795454d9c2811a101bc975
parent1fea0e3a0972bcc6b4319cd3d9e79834562486bc (diff)
downloadluarocks-45c7334b90bfea01b0ddd452545134292b9e3ebb.tar.gz
luarocks-45c7334b90bfea01b0ddd452545134292b9e3ebb.tar.bz2
luarocks-45c7334b90bfea01b0ddd452545134292b9e3ebb.zip
Fix of openssl location on TravisCI OSX build
-rw-r--r--test/test_environment.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_environment.lua b/test/test_environment.lua
index 8239795d..8f451e31 100644
--- a/test/test_environment.lua
+++ b/test/test_environment.lua
@@ -202,6 +202,9 @@ function test_env.set_args()
202 202
203 if execute_bool("sw_vers") then 203 if execute_bool("sw_vers") then
204 test_env.TEST_TARGET_OS = "osx" 204 test_env.TEST_TARGET_OS = "osx"
205 if test_env.TRAVIS then
206 test_env.OPENSSL_DIRS = "OPENSSL_LIBDIR=C:\\OpenSSL-Win32\\lib OPENSSL_INCDIR=C:\\OpenSSL-Win32\\include"
207 end
205 elseif execute_output("uname -s") == "Linux" then 208 elseif execute_output("uname -s") == "Linux" then
206 test_env.TEST_TARGET_OS = "linux" 209 test_env.TEST_TARGET_OS = "linux"
207 else 210 else