diff options
author | Mark Ferrell <major@homeonderanged.org> | 2012-03-19 14:59:48 -0500 |
---|---|---|
committer | Mark Ferrell <major@homeonderanged.org> | 2012-03-19 14:59:48 -0500 |
commit | 39a5565e04264720a673e63f3ab38cd458a70a5b (patch) | |
tree | 64da99f6a37d03bf3d79e8cc1e1b96633b6a7018 | |
parent | 4adc29ad949fd5d393c152681ed72eb57999c1e4 (diff) |
Do not pass down MAKEFLAGS.
* Do not allow child-processes to inherit MAKEFLAGS as the job control
descriptor is lost when calling build-compile.
-rwxr-xr-x | bin/builder/build-compile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/builder/build-compile b/bin/builder/build-compile index 1ff5d91..ecd3e97 100755 --- a/bin/builder/build-compile +++ b/bin/builder/build-compile @@ -9,6 +9,8 @@ CROSS_COMPILE="${CHOST}-" ARCH="x86" export ARCH CROSS_COMPILE CHOST +unset MAKEFLAGS + PATH="${BUILDER_SYSROOT}/usr/bin:${PATH}" export PATH |