diff options
author | Jeff Trawick <trawick@apache.org> | 2003-03-12 02:30:05 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2003-03-12 02:30:05 +0100 |
commit | ab54031a9da1015959f588fc709595f8a5615228 (patch) | |
tree | e65c8e61e4706b275105555c6000ece6982839cd /buildconf | |
parent | Fix up the export list so that it is consistent between debug and non-debug b... (diff) | |
download | apache2-ab54031a9da1015959f588fc709595f8a5615228.tar.xz apache2-ab54031a9da1015959f588fc709595f8a5615228.zip |
even users of libtool 1.3.x want out-of-tree apr builds to work
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98988 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -163,11 +163,11 @@ cp $apr_src_dir/build/config.guess $apr_src_dir/build/config.sub \ $apr_src_dir/build/find_apr.m4 $apu_src_dir/build/find_apu.m4 build # Optionally copy libtool-1.3.x files -if [ -f srclib/apr/build/ltconfig ]; then - cp srclib/apr/build/ltconfig build +if [ -f $apr_src_dir/build/ltconfig ]; then + cp $apr_src_dir/build/ltconfig build fi -if [ -f srclib/apr/build/ltmain.sh ]; then - cp srclib/apr/build/ltmain.sh build +if [ -f $apr_src_dir/build/ltmain.sh ]; then + cp $apr_src_dir/build/ltmain.sh build fi echo rebuilding $pcre_configure |