From ce3742799c318addabfc3565b6f1de1b5d797f4c Mon Sep 17 00:00:00 2001 From: Brian Havard Date: Sat, 15 Sep 2001 11:44:55 +0000 Subject: [PATCH] Fix test for ltconfig, m4 processing removes the square brackets. (I just happened to notice "-f: not found" while running configure) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91033 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 45940df007..9cf9627597 100644 --- a/configure.in +++ b/configure.in @@ -268,7 +268,7 @@ PRE_SHARED_CMDS='echo ""' POST_SHARED_CMDS='echo ""' if test "$apache_need_shared" = "yes"; then - if [ -f $ac_aux_dir/ltconfig ]; then + if test -f $ac_aux_dir/ltconfig; then $SHELL $ac_aux_dir/ltconfig --output=shlibtool --disable-static --srcdir=$ac_aux_dir --cache-file=./config.cache $ac_aux_dir/ltmain.sh fi case $host in -- 2.40.0