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 /tail_build/Makefile | |
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 'tail_build/Makefile')
-rw-r--r-- | tail_build/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tail_build/Makefile b/tail_build/Makefile index 4773523fe957..ffea455a06c1 100644 --- a/tail_build/Makefile +++ b/tail_build/Makefile @@ -29,7 +29,7 @@ ifeq ($(strip $(SOLARENV)),) all: - if test -f ./source_soenv.sh; then . ./source_soenv.sh; fi && \ + if test -f ./Env.Host.sh; then . ./Env.Host.sh; fi && \ if test -z "$${SOLARENV}"; then echo "No environment set!"; exit 1; fi && \ $(MAKE) |