diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-03-27 11:07:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-03-27 11:16:36 +0100 |
commit | a21266f2233dc2cc6a69eed4afc0baf77c74e52f (patch) | |
tree | 41bf93b6f49d18ecc16f8afc14e49fca44f1cb81 /Makefile.in | |
parent | 00e9accbc591791b6529105807a2944cd92dde78 (diff) |
Use explicit "SHELL=/usr/bin/env bash" in Makefile.in after all
...instead of "SHELL=@BASH@" from d3f7d05d1b9bb29e168c49bda1e1a28734567993
"Clean up OOO_SHELL" which could expand to SHELL=/bin/sh which, at least on
Mac OS X 10.7 with /usr/bin/make 3.81, could apparently lead to recipe lines
calling ooinstall being directly exec'ed from make and failing to find ooinstall
in solenv/bin, instead of going via the shell and taking into account PATH from
included config_host.mk.
Change-Id: I841dc30f72d1d8841c64f48408a669eb6a37a1f3
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 79740bb3c670..626c726746c2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -13,7 +13,7 @@ ifeq ($(MAKECMDGOALS),) MAKECMDGOALS:=all endif -SHELL=@BASH@ +SHELL=/usr/bin/env bash SRCDIR := @SRC_ROOT@ BUILDDIR := @BUILDDIR@ |