configure: fix detection of apxs (for httpd)
The condition check was turned the wrong way around! Closes #11051
This commit is contained in:
parent
b1ad4f1d5f
commit
2541231639
@ -333,7 +333,7 @@ if test x"$request_httpd" = "xcheck" -o x"$request_httpd" = "xyes"; then
|
||||
HTTPD="/usr/sbin/apache2"
|
||||
APACHECTL="/usr/sbin/apache2ctl"
|
||||
AC_PATH_PROG([APXS], [apxs])
|
||||
if test "x$APXS" != "x"; then
|
||||
if test "x$APXS" = "x"; then
|
||||
AC_MSG_NOTICE([apache2-dev not installed, httpd tests disabled])
|
||||
HTTPD_ENABLED="no"
|
||||
fi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user