git://www.ginac.de
/
ginac.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
added missing namespace qualification in is_ex_the_function() macro
[ginac.git]
/
acinclude.m4
diff --git
a/acinclude.m4
b/acinclude.m4
index e963eb91ec407ce62dd77e802b8ef92e8b8e5bcd..4b5cd720e89100ffcafb3b9442ab4ab7a3168563 100644
(file)
--- a/
acinclude.m4
+++ b/
acinclude.m4
@@
-86,8
+86,10
@@
if test "x${ginac_error}" = "xyes"; then
if test "x${ginac_warning_txt}" != "x"; then
echo "${ginac_warning_txt}"
fi
if test "x${ginac_warning_txt}" != "x"; then
echo "${ginac_warning_txt}"
fi
- echo "deleting cache ${cache_file}"
- rm -f $cache_file
+ if test "x$cache_file" != "x/dev/null"; then
+ echo "deleting cache ${cache_file}"
+ rm -f $cache_file
+ fi
else
if test x$ginac_warning = xyes; then
echo "=== The following minor problems have been detected by configure."
else
if test x$ginac_warning = xyes; then
echo "=== The following minor problems have been detected by configure."