diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-03-24 22:39:40 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-03-24 22:39:40 +0000 |
commit | 715d6e0982ad05a317478738acb8d7e3d3cf85da (patch) | |
tree | 870bdb9b0ba50c2bcabd466e2744f742546a7750 /util | |
parent | 565a281f3696bf6252fe3153f4b680db85fe7906 (diff) | |
download | coreboot-715d6e0982ad05a317478738acb8d7e3d3cf85da.tar.xz |
abuild should be using O=, not obj=
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5287 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rwxr-xr-x | util/abuild/abuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild index 1e67685ffb..3325fed6e3 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -143,7 +143,7 @@ function create_config printf "Using payload $PAYLOAD\n" fi - $MAKE distclean obj=${build_dir} + $MAKE distclean O=${build_dir} mkdir -p ${build_dir} if [ "$CONFIG" != "" ]; then @@ -181,7 +181,7 @@ function create_config fi fi - yes "" | $MAKE oldconfig obj=${build_dir} > ${build_dir}/config.log + yes "" | $MAKE oldconfig O=${build_dir} > ${build_dir}/config.log ret=$? mv .config.old $TARGET/${VENDOR}_${MAINBOARD}/config.in if [ $ret -eq 0 ]; then @@ -225,7 +225,7 @@ function compile_target CURR=$( pwd ) stime=`perl -e 'print time();' 2>/dev/null || date +%s` build_dir=$TARGET/${VENDOR}_${MAINBOARD} - eval $MAKE $silent -j $cpus obj=${build_dir} \ + eval $MAKE $silent -j $cpus O=${build_dir} \ &> ${build_dir}/make.log ret=$? mv .config ${build_dir}/config.build |