Got rid of autogen.sh, and just tell people to run autoreconf.
authorFrank Mori Hess <fmhess@speakeasy.net>
Tue, 31 Jul 2007 14:50:47 +0000 (14:50 +0000)
committerFrank Mori Hess <fmhess@speakeasy.net>
Tue, 31 Jul 2007 14:50:47 +0000 (14:50 +0000)
NEWS [new file with mode: 0644]
README.CVS
autogen.sh [deleted file]

diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..e69de29
index 2c1141cc3bf348598dd089636eb489bfc18fdf4b..4898fe8620054a70362625621b43972dccfc97ba 100644 (file)
@@ -2,12 +2,8 @@
 Building Comedilib from CVS is slightly different from the releases.
 There is an additional step of creating the configure script and
 makefiles from the templates using automake, autoconf, etc.  This
-is all done automatically by running the script ./autogen.sh.
-
-You may need to edit the autogen.sh script so that it runs the
-appropriate commands.  Often, the necessary commands have version
-suffixes.  Occasionally, for strange reasons, errors can be
-solved by running ./autogen.sh twice.
+is all done automatically by running the program autoreconf
+witch should be part of your distribution's autoconf package.
 
 Requirements:
 
@@ -15,4 +11,3 @@ Requirements:
   autoconf >= 2.54
   libtool >= 1.5
 
-
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755 (executable)
index 373cd69..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-if [ ! -f NEWS ] ; then
-       touch NEWS
-fi
-if [ ! -f AUTHORS ] ; then
-       touch AUTHORS
-fi
-if [ ! -f ChangeLog ] ; then
-       touch ChangeLog
-fi
-
-aclocal -I m4 && \
-libtoolize --copy --force && \
-autoheader && \
-autoconf && \
-automake -a -c 
-
-