* [Xenomai-core] [PATCH] run aclocal first
@ 2007-06-26 19:51 Jan Kiszka
0 siblings, 0 replies; only message in thread
From: Jan Kiszka @ 2007-06-26 19:51 UTC (permalink / raw)
To: xenomai-core
[-- Attachment #1: Type: text/plain, Size: 1323 bytes --]
autoheader depends on aclocal output, so make the latter run first.
(I was facing bootstrap failures due to different aclocal versions.)
---
scripts/bootstrap | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
Index: xenomai/scripts/bootstrap
===================================================================
--- xenomai.orig/scripts/bootstrap
+++ xenomai/scripts/bootstrap
@@ -14,16 +14,6 @@ rm -Rf autom4te.cache
if [ "$?" != "0" ]; then die "removing autom4te.cache"; fi
echo "done"
-echo -n "running autoheader..."
-autoheader
-if [ "$?" != "0" ]; then die "running autoheader"; fi
-echo "done"
-
-echo -n "running libtoolize..."
-libtoolize -c --automake
-if [ "$?" != "0" ]; then die "running libtoolize"; fi
-echo "done"
-
echo -n "running aclocal..."
if test -r acinclude.m4; then
touch acinclude.m4
@@ -34,6 +24,16 @@ fi
if [ "$?" != "0" ]; then die "running aclocal"; fi
echo "done"
+echo -n "running autoheader..."
+autoheader
+if [ "$?" != "0" ]; then die "running autoheader"; fi
+echo "done"
+
+echo -n "running libtoolize..."
+libtoolize -c --automake
+if [ "$?" != "0" ]; then die "running libtoolize"; fi
+echo "done"
+
echo -n "running autoconf..."
autoconf
if [ "$?" != "0" ]; then die "running autoconf"; fi
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 249 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-26 19:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-26 19:51 [Xenomai-core] [PATCH] run aclocal first Jan Kiszka
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.