diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-10-14 03:33:11 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-10-14 03:33:11 +0000 |
commit | 5a71d1dca7484d084ddc016807cc8a740ad08372 (patch) | |
tree | d36556d31ac13360c5af1d2b75a2859c8304aa81 | |
parent | 34323b52e34aadaa9b1afe70031eb6dde0340232 (diff) | |
download | coreboot-5a71d1dca7484d084ddc016807cc8a740ad08372.tar.xz |
- Make the directory for config.py to live in
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1217 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rwxr-xr-x | targets/buildtarget | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/targets/buildtarget b/targets/buildtarget index ac9326ea4d..b9447dbdb0 100755 --- a/targets/buildtarget +++ b/targets/buildtarget @@ -37,11 +37,11 @@ if [ ! -f $config_lb ]; then fi build_dir=`dirname $config_lb`/`sed -n -e 's/^target \(.*\)$/\1/p' $config_lb` -echo $build_dir +echo "build_dir=$build_dir" config_py=$build_dir/config.py -if [ ! -d $target_subdir ] ; then - mkdir -p $target_subdir +if [ ! -d $build_dir ] ; then + mkdir -p $build_dir fi if [ ! -f $config_py ]; then echo "No linuxbios config script found. Rebuilding it.." |