From 135fbead09eb44194dfe141af3d2d2594ee24e09 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Sun, 22 Apr 2012 15:40:00 -0400 Subject: [PATCH] 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 --- README | 2 +- autogen.sh | 21 --------------------- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100755 autogen.sh 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 "---------------------------------------------" -- 2.11.0