aboutsummaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2018-11-15 14:32:53 +1000
committerteor <teor@torproject.org>2018-11-15 19:23:33 +1000
commit540c833f20934ca0219579b96fae87c65bc1534e (patch)
tree383e92d2f2c426afc65daed8bb1247c75973d7ff /.appveyor.yml
parent4c3d61b5f2450ff8bf81f02bbaa2a42baa7af372 (diff)
downloadtor-540c833f20934ca0219579b96fae87c65bc1534e.tar.gz
tor-540c833f20934ca0219579b96fae87c65bc1534e.zip
Appveyor: remove incorrect OpenSSL path
Fixes 28399 on 0.3.4.1-alpha.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 4069a53966..fdf831686a 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -8,12 +8,10 @@ environment:
matrix:
- target: i686-w64-mingw32
compiler_path: mingw32
- openssl_path: /c/OpenSSL-Win32
mingw_prefix: mingw-w64-i686
hardening:
- target: x86_64-w64-mingw32
compiler_path: mingw64
- openssl_path: /c/OpenSSL-Win64
mingw_prefix: mingw-w64-x86_64
hardening: --disable-gcc-hardening
@@ -45,7 +43,7 @@ build_script:
Set-Location "${env:build}"
Execute-Bash "which ${env:target}-gcc"
Execute-Bash "${env:target}-gcc --version"
- Execute-Bash "../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --disable-asciidoc --enable-fatal-warnings --with-openssl-dir=${env:openssl_path} ${env:hardening}"
+ Execute-Bash "../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --disable-asciidoc --enable-fatal-warnings ${env:hardening}"
Execute-Bash "V=1 make -j2"
Execute-Bash "V=1 make -j2 install"
}