automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

1.4-p1 chokes after autoupdate


From: Steve M. Robbins
Subject: 1.4-p1 chokes after autoupdate
Date: Wed, 23 May 2001 09:03:06 -0400
User-agent: Mutt/1.3.17i

Hi,

I've switched to autoconf-2.50.

After running "autoupdate" (it seemed like a good idea at the time), I
discovered that automake 1.4 can't find any of the Makefile.am's.
This is because autoupdate replaced the AC_OUTPUT with AC_CONFIG_FILES
in configure.in.

I think this patch fixes it, and I would be very pleased if this makes
it into 1.4-p2.

-S


--- /usr/bin/automake   Mon May 21 19:41:31 2001
+++ /tmp/automake       Wed May 23 08:52:31 2001
@@ -4054,6 +4054,11 @@
            $in_ac_output = 1;
            $ac_output_line = $.;
        }
+       if (! $in_ac_output && s/AC_CONFIG_FILES\s*\(\[?//)
+       {
+           $in_ac_output = 1;
+           $ac_output_line = $.;
+       }
        if ($in_ac_output)
        {
            local ($closing) = 0;


-- 
by Rocket to the Moon,
by Airplane to the Rocket,
by Taxi to the Airport,
by Frontdoor to the Taxi,
by throwing back the blanket and laying down the legs ...
- They Might Be Giants




reply via email to

[Prev in Thread] Current Thread [Next in Thread]