* automake.in (&conditional_ambiguous_p): Don't forget to ->string
authorAkim Demaille <akim@epita.fr>
Wed, 6 Nov 2002 10:47:30 +0000 (10:47 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 6 Nov 2002 10:47:30 +0000 (10:47 +0000)
the Conditionals.

ChangeLog
automake.in

index 1a70d07..e751ec9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-06  Akim Demaille  <akim@epita.fr>
+
+       * automake.in (&conditional_ambiguous_p): Don't forget to ->string
+       the Conditionals.
+
 2002-10-31  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * automake.texi (Dist): Fix the distcleancheck_listfiles example.
index 519d9ca..6026b74 100755 (executable)
@@ -6112,12 +6112,14 @@ sub conditional_ambiguous_p ($$@)
        }
       elsif ($vcond->true_when ($cond))
        {
-         return ("$var was already defined in condition $vcond, "
+         return ("$var was already defined in condition "
+                 . $vcond->string . ", "
                  . "which implies condition ". $cond->string, $vcond);
        }
       elsif ($cond->true_when ($vcond))
        {
-         return ("$var was already defined in condition $vcond, "
+         return ("$var was already defined in condition "
+                 . $vcond->string . ", "
                   . "which is implied by condition " . $cond->string, $vcond);
        }
     }