Martin Costabel wrote:
[]
> I think this is a bug in automake-1.6.3

I looked into this some more and did a diff between the automake scripts 
version 1.6.2 and 1.6.3. The following diff seems to be at the origin of 
the present problem. If I revert this patch in automake-1.6.3, then 
abiword builds OK. I don't speak this auto language, so I have no idea 
what is going on, but it looks like a newly introduced bug that leads to 
a loop when automake is called by abiword's autogen.sh. The loop 
eventually terminates (after several hundred iterations), but automake 
then doesn't continue correctly.

  % diff -u /tmp/automake1.6.*
--- /tmp/automake1.6.2  Tue Aug 13 12:16:12 2002
+++ /tmp/automake1.6.3  Tue Aug 13 12:15:39 2002
[lots of diffs deleted]
@@ -6116,10 +6142,12 @@
        else
         {
           # There must be no previous value unless the user is redefining
-         # an Automake variable or an AC_SUBST variable.
+         # an Automake variable or an AC_SUBST variable for an existing
+         # condition.
           check_ambiguous_conditional ($var, $cond)
-           unless ($var_is_am{$var} && !$var_is_am
-                   || exists $configure_vars{$var});
+           unless (($var_is_am{$var} && !$var_is_am
+                    || exists $configure_vars{$var})
+                   && exists $var_value{$var}{$cond});

-- 
Martin






-------------------------------------------------------
This sf.net email is sponsored by: Dice - The leading online job board
for high-tech professionals. Search and apply for tech jobs today!
http://seeker.dice.com/seeker.epl?rel_code=31
_______________________________________________
Fink-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to