From 9b13fec05e3af762f4992a214b1960a497f2edf3 Mon Sep 17 00:00:00 2001 From: b1v1r Date: Tue, 22 Sep 2009 06:41:22 +0000 Subject: [PATCH] Cleanup apu and lua find macros. --- apache2/build/find_apu.m4 | 2 +- apache2/build/find_lua.m4 | 2 +- apache2/configure | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apache2/build/find_apu.m4 b/apache2/build/find_apu.m4 index 281d5146..27a96a89 100644 --- a/apache2/build/find_apu.m4 +++ b/apache2/build/find_apu.m4 @@ -26,7 +26,7 @@ AC_MSG_CHECKING([for libapu config script]) for x in ${test_paths}; do dnl # Determine if the script was specified and use it directly if test ! -d "$x" -a -e "$x"; then - APU_CONFIG="`basename $x`" + APU_CONFIG=$x apu_path="no" break fi diff --git a/apache2/build/find_lua.m4 b/apache2/build/find_lua.m4 index 8e9443f3..5c995615 100644 --- a/apache2/build/find_lua.m4 +++ b/apache2/build/find_lua.m4 @@ -25,7 +25,7 @@ AC_MSG_CHECKING([for liblua config script]) for x in ${test_paths}; do dnl # Determine if the script was specified and use it directly if test ! -d "$x" -a -e "$x"; then - LUA_CONFIG="$x" + LUA_CONFIG=$x break fi diff --git a/apache2/configure b/apache2/configure index b70d0a71..34e7b006 100755 --- a/apache2/configure +++ b/apache2/configure @@ -5571,7 +5571,7 @@ $as_echo_n "checking for libapu config script... " >&6; } for x in ${test_paths}; do if test ! -d "$x" -a -e "$x"; then - APU_CONFIG="`basename $x`" + APU_CONFIG=$x apu_path="no" break fi @@ -5721,7 +5721,7 @@ $as_echo_n "checking for liblua config script... " >&6; } for x in ${test_paths}; do if test ! -d "$x" -a -e "$x"; then - LUA_CONFIG="$x" + LUA_CONFIG=$x break fi