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