From: Alexandre Oliva Date: Sun, 7 Mar 1999 20:55:39 +0000 (+0000) Subject: * ltconfig.in (enable_fast_install): test whether it can be forced X-Git-Tag: release-1-2f~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d07ca87de5676448e93a6b1f3252abd9af197639;p=thirdparty%2Flibtool.git * ltconfig.in (enable_fast_install): test whether it can be forced off after shlibpath_overrides_runpath and enable_shared are set --- diff --git a/ChangeLog b/ChangeLog index 0136221d1..8ea34c403 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-03-07 Alexandre Oliva + + * ltconfig.in (enable_fast_install): test whether it can be forced + off after shlibpath_overrides_runpath and enable_shared are set + 1999-03-07 Thomas Tanner * TODO: updated diff --git a/ltconfig.in b/ltconfig.in index 9901e88fa..07b6b86f3 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1533,11 +1533,6 @@ else fi echo "$ac_t$hardcode_action" 1>&6 -if test "$hardcode_action" = relink || test "$shlibpath_overrides_rpath" = yes; then - # Fast installation is not supported/necessary - fast_install=no -fi - reload_flag= reload_cmds='$LD$reload_flag -o $output$reload_objs' @@ -1873,6 +1868,13 @@ test "$enable_shared" = yes || enable_static=yes echo "checking whether to build static libraries... $enable_static" 1>&6 +if test "$hardcode_action" = relink || + test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not supported/necessary + enable_fast_install=no +fi + echo $ac_n "checking for objdir... $ac_c" 1>&6 rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null