Hi Baurzhan,

* Baurzhan Ismagulov wrote on Mon, Sep 19, 2005 at 11:12:11PM CEST:
> 
> what is the right way to use
> ftp://ftp.internatif.org/pub/unix/autoconf-Java/autoconf-Java-CVS-snapshot-20000718.tar.gz?
> 
> The only way I could find was to cat *.m4 >acinclude.m4 and run aclocal;
> autoconf, but I suspect that isn't the best one.

Nope.

A bit better is
  for file in ac_*.m4; do
    echo "m4_include([$file])"
  done > acinclude.m4

A similar effect however is achieved by
  aclocal -I .
(except then the m4_includes end up in aclocal.m4, and are kept as
needed, i.e., as referenced.)

You need aclocal from Automake >= 1.8 for this, I believe.  And thus,
this question would have fit better on its mailing list.  ;-)

Cheers,
Ralf


_______________________________________________
Autoconf mailing list
Autoconf@gnu.org
http://lists.gnu.org/mailman/listinfo/autoconf
  • autoconf-Java Baurzhan Ismagulov
    • Re: autoconf-Java Ralf Wildenhues

Reply via email to