diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-27 07:38:02 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-09-27 07:38:02 -0500 |
commit | dca431cfea27385ffbcbebd3f080176a809bf9a2 (patch) | |
tree | 262d17d506d4a59b96373a0368174024d6c5b590 /solenv/gbuild | |
parent | 1cb87841f452ad7bb52aa0279edba6b6e980fbc7 (diff) |
revert the change in gbuild.mk : use /bin/sh as SHELL
This is for performance reasons.
there is a measurable benefit of being able to use /bin/dash
vs /bin/bash
and since make is a big consumer of shells, it is worth the pain.
Change-Id: I0654bee1e7bab1041cd00b5e71498bd593aeeecb
Diffstat (limited to 'solenv/gbuild')
-rw-r--r-- | solenv/gbuild/gbuild.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index c7f8a8309aa8..0f11ea0c4eb2 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -48,7 +48,7 @@ GBUILDDIR:=$(SRCDIR)/solenv/gbuild .DELETE_ON_ERROR: -SHELL := /usr/bin/env bash +SHELL := /bin/sh true := T false := define NEWLINE |