diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-07-25 00:46:39 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-07-25 00:47:41 +0300 |
commit | 76a27e577e912476252fe31543b24ee58b22fe63 (patch) | |
tree | d4759781840b484081207a2d261c2c8f03dafc55 /bootstrap.1 | |
parent | 15d5273c29c45df97d1e430a24892f30ca280b38 (diff) |
Use fixed-name environment script and no source_soenv.sh
No longer call the script snippet LinuxX86Env.Set.sh,
MacOSXX86Env.Set.sh, etc, but always Env.Host.sh. No need for
source_soenv.sh then, which wouldn't have worked when cross-compiling
anyway.
(As before, when cross-compiling, the environment script snipppet for
the BUILD platform is called Env.Build.sh.)
Diffstat (limited to 'bootstrap.1')
-rwxr-xr-x | bootstrap.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.1 b/bootstrap.1 index e398be81bc63..069b9951df26 100755 --- a/bootstrap.1 +++ b/bootstrap.1 @@ -1,13 +1,13 @@ if test -z "${SOLARENV}"; then - if test -f ./source_soenv.sh; then . ./source_soenv.sh; fi + if test -f ./Env.Host.sh; then . ./Env.Host.sh; fi fi if test -z "${SOLARENV}"; then echo "bootstrap: No environment set!" exit 1 fi -# remove aliases set by *Env.Set.sh +# remove aliases set by Env.Host.sh unalias mkout unalias deliver unalias build |