From: Ossama Othman Date: Sun, 5 Dec 1999 22:42:10 +0000 (+0000) Subject: The tagged configuration was being cached and overwriting the C X-Git-Tag: multi-language-merge-point~260 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf47a3dcd4589b980cdf776726f9b1710ebcf63a;p=thirdparty%2Flibtool.git The tagged configuration was being cached and overwriting the C compiler cached configuration. For now, the tagged configuration will not be cached. --- diff --git a/ltconfig.in b/ltconfig.in index 7e810f1b7..40fa5aae7 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -2523,7 +2523,8 @@ EOF ;; esac -test -n "$cache_file" || exit 0 +# Don't cache tagged configuration! +test -n "$cache_file" && test -z "$tagname" || exit 0 # AC_CACHE_SAVE trap '' 1 2 15