1
0
mirror of https://github.com/apache/httpd.git synced 2026-01-06 09:01:14 +03:00

Use "=" instead of "==" in test condition for

improved shell compatibility.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@888546 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2009-12-08 19:46:10 +00:00
parent 33b33d1987
commit 76709be016

View File

@@ -25,7 +25,7 @@ fi
AC_CHECK_LIB(m, pow, lib_m="-lm")
AC_CHECK_LIB(m, sqrt, lib_m="-lm")
for x in $test_paths ; do
if test "x$x" == "x."; then
if test "x$x" = "x."; then
AC_CHECK_HEADER(lua.h,[
save_CFLAGS=$CFLAGS
save_LDFLAGS=$LDFLAGS