From: Antti Kantee Date: Fri, 13 Nov 2015 13:58:07 +0000 (+0000) Subject: build-rr: run setvars also for install X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=60d913e3f312fc372a84e377e98a3bc7ab8a4a4e;p=osstest%2Frumprun.git build-rr: run setvars also for install Makes "./build-rr hw install" work. Without this fix the default object directory would not get set. --- diff --git a/build-rr.sh b/build-rr.sh index ab79a62..345a3bd 100755 --- a/build-rr.sh +++ b/build-rr.sh @@ -394,8 +394,6 @@ makeconfig () dobuild () { - setvars "$@" - checksubmodules . ${BUILDRUMP}/subr.sh @@ -431,7 +429,6 @@ doinstall () || die 'No objdir. No build or build with different params?' . "${RROBJ}/config.sh" - STAGING="${RROBJ}/dest.stage" # default used to be a symlink, so this is for "compat". # remove in a few months. @@ -472,6 +469,7 @@ doinstall () parseargs "$@" shift ${ARGSSHIFT} +setvars "$@" ${DObuild} && dobuild "$@" ${DOinstall} && doinstall