From 46b5e1d2860cdbf2376ab05fcce59de154125998 Mon Sep 17 00:00:00 2001 From: Mandeep Singh Baines Date: Fri, 3 Dec 2010 16:18:30 -0800 Subject: [PATCH] cros_workon_make: actually inplace when doing an install Also, fixed to honour external FEATURES for the install case. BUG=n0ne TEST=Built a kernel with this CL. Change-Id: I17d50cc382b297766761f12d47a555630fedc016 Review URL: http://codereview.chromium.org/5530004 --- bin/cros_workon_make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/cros_workon_make b/bin/cros_workon_make index 1556149b82..df5f0a7686 100755 --- a/bin/cros_workon_make +++ b/bin/cros_workon_make @@ -85,7 +85,8 @@ if [ "${FLAGS_test}" = "${FLAGS_TRUE}" ]; then emerge_features="test" fi if [ "${FLAGS_install}" = "${FLAGS_TRUE}" ]; then - FEATURES="${emerge_features}" "${EMERGECMD}" "${1}" + SANDBOX_WRITE=~/trunk CROS_WORKON_INPLACE=1 \ + FEATURES="${emerge_features} ${FEATURES}" "${EMERGECMD}" "${1}" exit $? fi