Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12565 - main/branches/prefix/bin
Date: Fri, 30 Jan 2009 21:33:32
Message-Id: E1LT0zS-00038g-Tx@stork.gentoo.org
1 Author: grobian
2 Date: 2009-01-30 21:33:30 +0000 (Fri, 30 Jan 2009)
3 New Revision: 12565
4
5 Modified:
6 main/branches/prefix/bin/emake
7 Log:
8 For Interix where /bin/sh is totally broken on Vista, we need make to use bash from our prefix, which is not broken. I don't think this should hurt anyone, so we just use prefix bash for everyone now with emake.
9
10 Modified: main/branches/prefix/bin/emake
11 ===================================================================
12 --- main/branches/prefix/bin/emake 2009-01-30 21:29:57 UTC (rev 12564)
13 +++ main/branches/prefix/bin/emake 2009-01-30 21:33:30 UTC (rev 12565)
14 @@ -22,4 +22,4 @@
15 ) >&2
16 fi
17
18 -exec ${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE} "$@"
19 +exec ${MAKE:-make} SHELL="${BASH:-/bin/bash}" ${MAKEOPTS} ${EXTRA_EMAKE} "$@"