source: rtems/contrib/mingw/ba-wrap.sh @ a5c8f11

4.104.114.95
Last change on this file since a5c8f11 was 598aab1f, checked in by Chris Johns <chrisj@…>, on 08/20/07 at 02:12:48

2007-08-20 Chris Johns <chisj@…>

  • filewrite.nsi, getparameters.nsi, instance-check.nsi, mingw-path.nsi, sm-dummy.nsi, strslash.nsi, strstr.nsi, options.nsi: Added the shared between the 2 installer scripts.
  • msys-path.nsi: Fixed the last LF bug.
  • rtems-autotools.nsi, rtems-tools.nsi: Fixed the instance check, added a start menu, remove pages from target installers.
  • rtems.ini: Fixed the URL links. Added support link.
  • rtems_logo.bmp: Trimmed a little more to get a better image.
  • ba-wrap.sh: Stop on a error.
  • build-exes.sh: Use the option parameter variables. Change the order the section appear in the installer.
  • Property mode set to 100644
File size: 410 bytes
Line 
1#! /bin/sh
2source=$(dirname $0)
3if [ "$source" = "." ]; then
4  source=$(pwd)
5fi
6echo
7echo "             DO NOT CLOSE    DO NOT CLOSE"
8echo
9echo "Warning: this command window will automatically close."
10echo
11echo "Build output: $source/at-log.txt"
12echo
13$source/build-autotools.sh $* 2>&1 >> $source/at-log.txt
14ec=$?
15if [ $ec -ne 0 ]; then
16  echo "ERROR: code '$ec'. Press Any Key to continue"
17  read
18fi
19exit $ec
Note: See TracBrowser for help on using the repository browser.