summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-01-28 23:21:10 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-01-28 23:21:10 +0000
commitafd0c72d206d2454c8e249ca4d43d675bfd52389 (patch)
treee20d5ab4c781f40110d30fd4a35d0a42684a42e4
parenta3689fa70b2227755cff90d30333dd7bd8d6e1dc (diff)
downloadATCD-afd0c72d206d2454c8e249ca4d43d675bfd52389.tar.gz
ChangeLogTag:Tue Jan 28 14:57:50 2003 Ossama Othman <ossama@uci.edu>
-rw-r--r--ChangeLog8
-rw-r--r--ChangeLogs/ChangeLog-03a8
-rwxr-xr-xbin/bootstrap33
3 files changed, 34 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bb4a497384..12ebb91d158 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jan 28 14:57:50 2003 Ossama Othman <ossama@uci.edu>
+
+ * bin/bootstrap:
+
+ Corrected invocation order `libtoolize' and `autoconf'.
+ `libtoolize' should be run prior to `autoconf'. Fixes an error
+ concerning a missing `libtool' script.
+
Fri Jan 17 20:21:41 2003 Steve Huston <shuston@riverace.com>
* ace/Makefile.am: Fix syntax errors for libACE_Sockets_la_SOURCES.
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 2bb4a497384..12ebb91d158 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,11 @@
+Tue Jan 28 14:57:50 2003 Ossama Othman <ossama@uci.edu>
+
+ * bin/bootstrap:
+
+ Corrected invocation order `libtoolize' and `autoconf'.
+ `libtoolize' should be run prior to `autoconf'. Fixes an error
+ concerning a missing `libtool' script.
+
Fri Jan 17 20:21:41 2003 Steve Huston <shuston@riverace.com>
* ace/Makefile.am: Fix syntax errors for libACE_Sockets_la_SOURCES.
diff --git a/bin/bootstrap b/bin/bootstrap
index 5ab87392a12..8a6e86492e3 100755
--- a/bin/bootstrap
+++ b/bin/bootstrap
@@ -50,7 +50,7 @@ Workspace Bootstrapping
Bootstrapping a workspace causes all files necessary for
maintainers to build ACE or TAO to be generated.
- Enabling dependency tracking via the \`--enable-deps' option causes
+ Enabling dependency tracking via the \`--enable-deps\' option causes
GNU Automake to generate dependency tracking rules in generated
Makefile.in files. Currently those dependency tracking rules only
work with GNU C++, which is why dependency tracking is disabled by
@@ -113,21 +113,17 @@ if test -d m4; then
# Update the NEWS file
# For now just copy the contents of the `VERSION' file to make automake
# happy. Eventually, we should start putting real news in to it.
- echo Creating a NEWS file
+ echo "Creating a NEWS file"
cp VERSION NEWS
# Generate an `aclocal.m4' file from all existing m4 macro files
# including those in the `m4' directory.
- echo Running aclocal
+ echo "Running aclocal"
aclocal -I m4
- # Generate a `config.h.in' configuration header template from `acconfig.h'.
- echo Running autoheader
- autoheader -I m4
-
- # Generate the `configure' script from the `configure.in'.
- echo Running autoconf
- autoconf
+# Make sure libtool support files are available.
+ echo "Running libtool"
+ libtoolize --automake
# # Generate all `Makefile.in' templates in the directories listed in
# # `configure.in' and add any missing files that GNU Automake needs so
@@ -136,11 +132,18 @@ if test -d m4; then
# if test $bootstrap_release = no && test $enable_deps = no; then
# automake --add-missing --include-deps #--verbose
# else
- automake --add-missing #--verbose
+
+ echo "Running automake"
+ automake --add-missing
# fi
-# Make sure libtool support files are available.
- libtoolize --automake
+ # Generate a `config.h.in' configuration header template from `acconfig.h'.
+ echo "Running autoheader"
+ autoheader -I m4
+
+ # Generate the `configure' script from the `configure.in'.
+ echo "Running autoconf"
+ autoconf
# # Generate the man pages.
# # Only generate man pages if bootstrapping a release.
@@ -181,8 +184,8 @@ if test -d m4; then
# fi # test -f man/man3/Makefile.am
# Provide some more "useful" information.
- echo Done bootstrapping.
+ echo "Done bootstrapping."
else
- echo ACE must be bootstrapped from the top-level ACE source directory.
+ echo "ACE must be bootstrapped from the top-level ACE source directory."
exit 1;
fi # test -d m4