From: Alexandre Oliva Date: Mon, 2 Nov 1998 08:34:05 +0000 (+0000) Subject: * autogen: new script; run it to bootstrap libtool after checking X-Git-Tag: start~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61880908325fb760e6ba01eb0e4da50b7d9b32af;p=thirdparty%2Flibtool.git * autogen: new script; run it to bootstrap libtool after checking it out from CVS --- diff --git a/ChangeLog b/ChangeLog index 649a5b90a..49632fc1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-11-02 Alexandre Oliva + * autogen: new script; run it to bootstrap libtool after checking + it out from CVS + * libtool.m4 (CFLAGS): check whether -belf is needed on SCO, as suggested by Robert Lipe diff --git a/autogen b/autogen new file mode 100644 index 000000000..68a4001d7 --- /dev/null +++ b/autogen @@ -0,0 +1,12 @@ +#! /bin/sh + +# helps bootstrapping libtool, when checked out from CVS +# requires GNU autoconf and GNU automake +# this is not meant to go into the distributions + +rm -f acinclude.m4 && +ln -s libtool.m4 acinclude.m4 && +aclocal && +automake --gnits --add-missing && +autoconf && +exit 0