Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4543
-gerrit
commit 3409679ad35cae72b8253c852e0cf3bcb25330d1 Author: Patrick Georgi patrick@georgi-clan.de Date: Thu Dec 19 20:43:29 2013 +0100
abuild: make build directory configurable with a variable
Allow overriding the build directly (default: coreboot-builds) using the COREBOOT_BUILD_DIR variable, in addition to setting it through the -o parameter. This helps with build nodes where jenkins wants to run the same command everywhere but allows different environment variables.
Change-Id: If907897cf6ac01caa7d1e4b51aad4c005356bc5b Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- util/abuild/abuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/abuild/abuild b/util/abuild/abuild index 3f28486..cbfc9dc 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -22,7 +22,7 @@ ABUILD_VERSION="0.9.3" TOP=$PWD
# Where shall we place all the build trees? -TARGET=coreboot-builds +TARGET=${COREBOOT_BUILD_DIR:-coreboot-builds} XMLFILE=$TOP/abuild.xml REAL_XMLFILE=$XMLFILE