From: Frank Mori Hess Date: Tue, 31 Jul 2007 14:50:47 +0000 (+0000) Subject: Got rid of autogen.sh, and just tell people to run autoreconf. X-Git-Tag: v0_8_0~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3a30f9f97cd7cbba6d802ab3f09b1f33f2924563;p=comedilib.git Got rid of autogen.sh, and just tell people to run autoreconf. --- diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README.CVS b/README.CVS index 2c1141c..4898fe8 100644 --- a/README.CVS +++ b/README.CVS @@ -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 index 373cd69..0000000 --- a/autogen.sh +++ /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 - -