diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-11 00:35:15 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2011-08-11 01:31:48 -0500 |
commit | 9115de58b8765e354e725421cf77d111def8291d (patch) | |
tree | 0ea440061e7eb772ca5776b83a56ec744ae0154e /bootstrap.1 | |
parent | 69a454249c84743d98d51098e21d85438efc7d25 (diff) |
silence bootstrap 'error' on unalias of undefined alias
Diffstat (limited to 'bootstrap.1')
-rwxr-xr-x | bootstrap.1 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bootstrap.1 b/bootstrap.1 index 19a9d1ea64ea..f49bf8633e66 100755 --- a/bootstrap.1 +++ b/bootstrap.1 @@ -8,13 +8,13 @@ if test -z "${SOLARENV}"; then fi # remove aliases set by Env.Host.sh -unalias mkout -unalias deliver -unalias build -unalias zipdep +unalias mkout 2> /dev/null +unalias deliver 2> /dev/null +unalias build 2> /dev/null +unalias zipdep 2> /dev/null # executables are *.exe for WNT. This variable is necessary since Cygwin 1.5.x -# Use spawn instead of fork when building dmake on cygwin. +# Use spawn instead of fork when building dmake on cygwin. if test "$GUI_FOR_BUILD" = "WNT"; then EXEEXT=".exe" DMAKE_CONF="--enable-spawn" @@ -67,7 +67,7 @@ if test "$BUILD_DMAKE" != "NO"; then echo "dmake copied to $SOLARENV/$OUTPATH_FOR_BUILD/bin/dmake$EXEEXT" fi -#make sure build.pl is executable +#make sure build.pl is executable chmod +x "$SRC_ROOT/solenv/bin/build.pl" chmod +x "$SRC_ROOT/solenv/bin/zipdep.pl" |