summaryrefslogtreecommitdiffstats
path: root/contrib/mingw/ba-wrap.sh
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2013-03-12 16:03:02 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2013-03-12 16:03:02 -0500
commit9ad9dc2134b7c3af092f6b74de14cd3931fce97b (patch)
tree5b6c69b0878945de5ccc585c1726c6767b7639ed /contrib/mingw/ba-wrap.sh
parentdoc/texi2html_init.in: Correct typo (diff)
downloadrtems-9ad9dc2134b7c3af092f6b74de14cd3931fce97b.tar.bz2
contrib: Remove.
Diffstat (limited to '')
-rwxr-xr-xcontrib/mingw/ba-wrap.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/mingw/ba-wrap.sh b/contrib/mingw/ba-wrap.sh
deleted file mode 100755
index be73196659..0000000000
--- a/contrib/mingw/ba-wrap.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /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=$?
-if [ $ec -ne 0 ]; then
- echo "ERROR: code '$ec'. Press Any Key to continue"
- read
-fi
-exit $ec