Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:675f1635b6d25b1ab2e5ea07155567707a2a2aad
Author...:karl <>
Committer:karl <>
Date.....:Mon May 8 23:14:59 2006 +0000
Parents..:65bbd03c7be2094b2796d7b50557d8e4591b8f19

Message
[project @ 2006-05-08 23:14:59 by karl]
back to autogen.sh, and fix message, per bruno

Changes
diff --git a/ChangeLog b/ChangeLog
line changes: +5/-0
index 9fa8d31..52c7591
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-05-08  Karl Berry  <karl@gnu.org>
+
+	* autogen.sh: rename from bootstrap and change msg.
+	Suggestion from Bruno Haible.
+
 2006-02-14  Karl Berry  <karl@gnu.org>
 
 	* configure.ac (gl_SOURCE_BASE,gl_M4_BASE): delete, these are

diff --git a/README.dev b/README.dev
line changes: +1/-1
index 619ca4d..7580c7e
--- a/README.dev
+++ b/README.dev
@@ -28,5 +28,5 @@ For the record, the first time invocation was
 Current gnulib information is recorded in gnulib/m4/gnulib-cache.m4.
 
 After getting the CVS sources, and installing the tools above, you can run
-  ./bootstrap
+  sh ./autogen.sh
 to do a fresh build.  After that first time, running make should suffice.

diff --git a/autogen.sh b/autogen.sh
line changes: +31/-0
index 0000000..68f8902
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+# Created 2005-03-27, Karl Berry.  Public domain.
+
+if test "x$1" = x-n; then
+  chicken=true
+  echo "Ok, playing chicken; not actually running any commands."
+else
+  chicken=
+fi
+
+echo "Preparing CVS Hello infrastructure:"
+
+# This overwrites lots of files with older versions, so don't use it.
+# I keep the newest versions of files common between distributions up to
+# date in CVS, using gnulib-tool, because it's not trivial for every
+# developer to do this.
+#cmd="autoreconf --verbose --force --install --include=gnulib/m4"
+
+: ${ACLOCAL=aclocal}
+: ${AUTOHEADER=autoheader}
+: ${AUTOMAKE=automake}
+: ${AUTOCONF=autoconf}
+
+# So instead:
+cmd="$ACLOCAL -I gnulib/m4 && $AUTOHEADER && $AUTOMAKE && $AUTOCONF"
+echo "  $cmd"
+$chicken eval $cmd || exit 1
+
+echo
+echo "Now run configure with your desired options, for instance:"
+echo "  ./configure CFLAGS=-g"

diff --git a/bootstrap b/bootstrap
line changes: +0/-31
index b575e25..0000000
--- a/bootstrap
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# Created 2005-03-27, Karl Berry.  Public domain.
-
-if test "x$1" = x-n; then
-  chicken=true
-  echo "Ok, playing chicken; not actually running any commands."
-else
-  chicken=
-fi
-
-echo "Bootstrapping CVS Hello with:"
-
-# This overwrites lots of files with older versions, so don't use it.
-# I keep the newest versions of files common between distributions up to
-# date in CVS, using gnulib-tool, because it's not trivial for every
-# developer to do this.
-#cmd="autoreconf --verbose --force --install --include=gnulib/m4"
-
-: ${ACLOCAL=aclocal}
-: ${AUTOHEADER=autoheader}
-: ${AUTOMAKE=automake}
-: ${AUTOCONF=autoconf}
-
-# So instead:
-cmd="$ACLOCAL -I gnulib/m4 && $AUTOHEADER && $AUTOMAKE && $AUTOCONF"
-echo "  $cmd"
-$chicken eval $cmd || exit 1
-
-echo
-echo "Now run configure with your desired options, for instance:"
-echo "  ./configure CFLAGS=-g"

This website is licensed under AGPL-3.0. Feel free to copy!