From: Pavel Roskin Date: Sat, 2 Sep 2000 22:35:12 +0000 (+0000) Subject: * ltconfig.in: only load $cache_file if it's a regular file X-Git-Tag: release-1-3d~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f84b61cb49f9d00f85f5892c475858b86b9be7c0;p=thirdparty%2Flibtool.git * ltconfig.in: only load $cache_file if it's a regular file --- diff --git a/ChangeLog b/ChangeLog index 76cf0e06a..a9236e608 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-09-02 Pavel Roskin + + * ltconfig.in: only load $cache_file if it's a regular file + 2000-09-02 Assar Westerlund * ltconfig.in: Add back ranlib calls for static libraries if there diff --git a/ltconfig.in b/ltconfig.in index a7e1cd0a4..e28d0c3aa 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -410,7 +410,7 @@ exec 5>>./config.log if test "X${LC_ALL+set}" = Xset; then LC_ALL=C; export LC_ALL; fi if test "X${LANG+set}" = Xset; then LANG=C; export LANG; fi -if test -n "$cache_file" && test -r "$cache_file"; then +if test -n "$cache_file" && test -r "$cache_file" && test -f "$cache_file"; then echo "loading cache $cache_file within ltconfig" . $cache_file fi