diff options
author | Rainer Jung <rjung@apache.org> | 2009-12-08 20:46:10 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2009-12-08 20:46:10 +0100 |
commit | 76709be01642d058e569c030184033bf6a41a2ea (patch) | |
tree | 34ec2ddbd75bbc6fe45c8e0166eb76e4f754f16a /modules/lua | |
parent | Don't keepalive when we send a non-100 response while Client is expecting 100 (diff) | |
download | apache2-76709be01642d058e569c030184033bf6a41a2ea.tar.xz apache2-76709be01642d058e569c030184033bf6a41a2ea.zip |
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
Diffstat (limited to 'modules/lua')
-rw-r--r-- | modules/lua/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lua/config.m4 b/modules/lua/config.m4 index 6010980938..eeb355eb18 100644 --- a/modules/lua/config.m4 +++ b/modules/lua/config.m4 @@ -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 |