summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-07 12:31:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-12-07 12:31:13 +0000
commitd0d33f21a3501a44a3530f4806d523220900e366 (patch)
tree90dc82ff6ac1bb447cc9b7b348115317de4b8e92
parentchanged version to ss-20011203 (diff)
downloadrtems-d0d33f21a3501a44a3530f4806d523220900e366.tar.bz2
2001-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: Run autoheader when configure.ac contains RTEMS_BSP_CONFIGURE. Remove bspopts.h* files.
-rw-r--r--ChangeLog5
-rwxr-xr-xbootstrap3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 740dc2f878..d7ad2131b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-04 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * bootstrap: Run autoheader when configure.ac contains
+ RTEMS_BSP_CONFIGURE. Remove bspopts.h* files.
+
2001-11-30 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/bsp-configure.m4: New file.
diff --git a/bootstrap b/bootstrap
index 487ae92e86..8dec6f3f52 100755
--- a/bootstrap
+++ b/bootstrap
@@ -82,6 +82,8 @@ generate)
aclocal $aclocal_args;
test -n "`grep CONFIG_HEADER ${configure}`" && autoheader \
&& test "$verbose" = "-v" && echo "autoheader";
+ test -n "`grep RTEMS_BSP_CONFIGURE ${configure}`" && autoheader \
+ && test "$verbose" = "-v" && echo "autoheader";
test -f Makefile.am && automake -a -c $verbose ;
autoconf;
test -f Makefile.am && test -n "`grep 'stamp-h\.in' Makefile.in`" \
@@ -115,6 +117,7 @@ clean)
fi; done
find . -name '*~' -print | xargs rm -f
+ find . -name 'bspopts.h*' -print | xargs rm -f
find . -name '*.orig' -print | xargs rm -f
find . -name '*.rej' -print | xargs rm -f
find . -name 'config.status' -print | xargs rm -f