You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2011/05/12 16:35:03 UTC

svn commit: r1102328 - in /httpd/httpd/trunk: CHANGES modules/lua/config.m4

Author: rjung
Date: Thu May 12 14:35:03 2011
New Revision: 1102328

URL: http://svn.apache.org/viewvc?rev=1102328&view=rev
Log:
Fix configure error when configuring module set "reallyall".

Modified:
    httpd/httpd/trunk/CHANGES
    httpd/httpd/trunk/modules/lua/config.m4

Modified: httpd/httpd/trunk/CHANGES
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/CHANGES?rev=1102328&r1=1102327&r2=1102328&view=diff
==============================================================================
--- httpd/httpd/trunk/CHANGES [utf-8] (original)
+++ httpd/httpd/trunk/CHANGES [utf-8] Thu May 12 14:35:03 2011
@@ -2,6 +2,8 @@
 
 Changes with Apache 2.3.13
 
+  *) configure: Fix script error when configuring module set "reallyall".
+     [Rainer Jung]
 
 Changes with Apache 2.3.12
 

Modified: httpd/httpd/trunk/modules/lua/config.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/config.m4?rev=1102328&r1=1102327&r2=1102328&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/config.m4 (original)
+++ httpd/httpd/trunk/modules/lua/config.m4 Thu May 12 14:35:03 2011
@@ -16,7 +16,7 @@ AC_ARG_WITH(
     :)
 
 dnl # Determine lua lib directory
-if test -z $lua_path; then
+if test -z "$lua_path"; then
     test_paths=". /usr/local /usr"
 else
     test_paths="${lua_path}"