forked from Imagelibrary/rtems
* 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.
20 lines
410 B
Bash
20 lines
410 B
Bash
#! /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
|