From 0d4a08e7da73c1a24a7bb092ba6ef2c09af37239 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 1 Jul 2009 12:26:11 +0000 Subject: [PATCH] let abuild autodetect the coreboot path a bit better. So in the top level of coreboot you can now do: $ util/abuild/abuild -t foo/bar instead of $ util/abuild/abuild -t foo/bar $PWD Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4388 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/abuild/abuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index 11dbea2fe..5aacd6989 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -603,9 +603,12 @@ EOF # default options target="" buildall=false -LBROOT=$( cd ../..; pwd ) verbose=false +test -f util/newconfig/config.g && LBROOT=$( pwd ) +test -f ../util/newconfig/config.g && LBROOT=$( cd ..; pwd ) +test "$LBROOT" = "" && LBROOT=$( cd ../..; pwd ) + # parse parameters.. try to find out whether we're running GNU getopt getoptbrand="`getopt -V`" if [ "${getoptbrand:0:6}" == "getopt" ]; then -- 2.25.1