mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'tor-gitlab/mr/311'
This commit is contained in:
commit
2709828494
3
changes/bug40298
Normal file
3
changes/bug40298
Normal file
@ -0,0 +1,3 @@
|
||||
o Minor bugfixes (portability):
|
||||
- Fix a non-portable usage of "==" with "test" in the configure script.
|
||||
Fixes bug 40298; bugfix on 0.4.5.1-alpha.
|
@ -1157,7 +1157,7 @@ AC_RUN_IFELSE([AC_LANG_SOURCE([AC_LANG_PROGRAM([[
|
||||
]])])], [openssl_ver_mismatch=no], [
|
||||
# This is a kludge to figure out whether compilation failed, or whether
|
||||
# running the program failed.
|
||||
if test "$ac_retval" == "1"; then
|
||||
if test "$ac_retval" = "1"; then
|
||||
openssl_ver_mismatch=inconclusive
|
||||
else
|
||||
openssl_ver_mismatch=yes
|
||||
|
Loading…
Reference in New Issue
Block a user