mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-11 15:00:08 +08:00
* ltconfig.in: only load $cache_file if it's a regular file
This commit is contained in:
parent
098893dc99
commit
f84b61cb49
@ -1,3 +1,7 @@
|
||||
2000-09-02 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* ltconfig.in: only load $cache_file if it's a regular file
|
||||
|
||||
2000-09-02 Assar Westerlund <assar@sics.se>
|
||||
|
||||
* ltconfig.in: Add back ranlib calls for static libraries if there
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user