summaryrefslogtreecommitdiffstats
path: root/contrib/mingw/ba-wrap.sh
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2007-07-28 08:31:57 +0000
committerChris Johns <chrisj@rtems.org>2007-07-28 08:31:57 +0000
commitf6cd0dbeadb89f13c616bc3bce19fad59093759b (patch)
tree55f32d8ae20ca7d97550213553a8379f5cfb0d2e /contrib/mingw/ba-wrap.sh
parent2007-07-28 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f6cd0dbeadb89f13c616bc3bce19fad59093759b.tar.bz2
2007-07-28 Chris Johns <chisj@rtems.org>
* README, build-rpms.sh, rtems.ini, build-exes.sh, rtems-tools.nsi: Updated to the new 4.8 build plus a new installer. * autoconf.def, automake.def, ba-wrap.sh, build-autotools.sh, msys-path.nsi, rtems-autotools.nsi, target-section-text, upload.sh, version: New to version 4.8. Autotools is built when installing.
Diffstat (limited to '')
-rw-r--r--contrib/mingw/ba-wrap.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/mingw/ba-wrap.sh b/contrib/mingw/ba-wrap.sh
new file mode 100644
index 0000000000..8ed89237e8
--- /dev/null
+++ b/contrib/mingw/ba-wrap.sh
@@ -0,0 +1,15 @@
+#! /bin/sh
+source=$(dirname $0)
+if [ "$source" = "." ]; then
+ source=$(pwd)
+fi
+echo
+echo " DO NOT CLOSE DO NOT CLOSE"
+echo
+echo "Warning: this command window will automatically close."
+echo
+echo "Build output: $source/at-log.txt"
+echo
+$source/build-autotools.sh $* 2>&1 >> $source/at-log.txt
+ec=$?
+exit $ec