aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2003-10-14 03:33:11 +0000
committerEric Biederman <ebiederm@xmission.com>2003-10-14 03:33:11 +0000
commit5a71d1dca7484d084ddc016807cc8a740ad08372 (patch)
treed36556d31ac13360c5af1d2b75a2859c8304aa81 /targets
parent34323b52e34aadaa9b1afe70031eb6dde0340232 (diff)
- Make the directory for config.py to live in
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1217 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'targets')
-rwxr-xr-xtargets/buildtarget6
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.."