"tail +140" no longer works.

Dave Korn dave.korn.cygwin@googlemail.com
Mon Mar 16 22:45:00 GMT 2009


Dave Korn wrote:
> Dave Korn wrote:
>> Alan Modra wrote:
>>
>>> ld/
>>> 	* configure.in: Invoke ACX_PROG_CMP_IGNORE_INITIAL.
>>> 	* Makefile.am (check-DEJAGNU): Set DO_COMPARE.
>>> 	* aclocal.m4: Regenerate.
>>> 	* configure: Regenerate.
>>> 	* Makefile.in: Regenerate.
>>   Doh.  Where is the procedure documented, again?  
> 
>   Nevermind, I worked it out:
> 
> aclocal -I ../config -I .. -I ../bfd

  For anyone who might stumble upon this post in future:

http://sourceware.org/ml/binutils/2007-03/msg00122.html

contains the excellent advice "you always want to match ACLOCAL_AMFLAGS from
Makefile.am".  (The rest of the thread is instructive, too.)  So I got .. and
../config the wrong way round there:

$ grep ACLOCAL_AMFLAGS Makefile.in
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)


... and that may well be important, because when I regenerated it with the
includes in the correct order, the generated aclocal.m4 was slightly different:

$ diff -pu a1 aclocal.m4
--- a1  2009-03-16 22:52:50.515625000 +0000
+++ aclocal.m4  2009-03-16 22:53:30.500000000 +0000
@@ -974,11 +974,6 @@ AC_SUBST([am__untar])

 m4_include([../bfd/acinclude.m4])
 m4_include([../bfd/warning.m4])
-m4_include([../libtool.m4])
-m4_include([../ltoptions.m4])
-m4_include([../ltsugar.m4])
-m4_include([../ltversion.m4])
-m4_include([../lt~obsolete.m4])
 m4_include([../config/acx.m4])
 m4_include([../config/depstand.m4])
 m4_include([../config/extensions.m4])
@@ -989,3 +984,8 @@ m4_include([../config/override.m4])
 m4_include([../config/po.m4])
 m4_include([../config/proginstall.m4])
 m4_include([../config/progtest.m4])
+m4_include([../libtool.m4])
+m4_include([../ltoptions.m4])
+m4_include([../ltsugar.m4])
+m4_include([../ltversion.m4])
+m4_include([../lt~obsolete.m4])

$

  FYI, FTR, HTH etc!

    cheers,
      DaveK



More information about the Binutils mailing list