From: Dan Scott Date: Sun, 22 Apr 2012 19:40:00 +0000 (-0400) Subject: Bootstrap via "autoreconf -f -i" instead of "autogen.sh" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=135fbead09eb44194dfe141af3d2d2594ee24e09;p=evergreen%2Fpines.git Bootstrap via "autoreconf -f -i" instead of "autogen.sh" It has always been potentially confusing to maintain two shell scripts named "autogen.sh" for two distinct purposes in Evergreen. Take advantage of "autoreconf" that is packaged with autoconf for dev bootstrapping purposes and trash the old "autogen.sh" as a result. Signed-off-by: Dan Scott Signed-off-by: Jason Stephenson --- diff --git a/README b/README index f7b1a88316..8f89d1f192 100644 --- a/README +++ b/README @@ -54,7 +54,7 @@ source directory to generate the configure script and Makefiles: [source, bash] ------------------------------------------------------------------------------ -./autogen.sh +autoreconf -f -i ------------------------------------------------------------------------------ After running `make install`, developers also need to install the Dojo Toolkit diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 5d0eacb0ca..0000000000 --- a/autogen.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -# autogen.sh - generates configure using the autotools - -: ${LIBTOOLIZE=libtoolize} -: ${ACLOCAL=aclocal} -: ${AUTOHEADER=autoheader} -: ${AUTOMAKE=automake} -: ${AUTOCONF=autoconf} - - -${LIBTOOLIZE} --force --copy -${ACLOCAL} -${AUTOMAKE} --add-missing --copy - - -${AUTOCONF} - -echo -echo "---------------------------------------------" -echo "autogen finished running, now run ./configure" -echo "---------------------------------------------"