]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* autogen: new script; run it to bootstrap libtool after checking
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Mon, 2 Nov 1998 08:34:05 +0000 (08:34 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Mon, 2 Nov 1998 08:34:05 +0000 (08:34 +0000)
it out from CVS

ChangeLog
autogen [new file with mode: 0644]

index 649a5b90a345598568bd69180af5082a93f66031..49632fc1cb7afd747b3406f2cc69d9a446d890ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1998-11-02  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * 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 <robertl@dgii.com>
 
diff --git a/autogen b/autogen
new file mode 100644 (file)
index 0000000..68a4001
--- /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