- Make the directory for config.py to live in
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1217 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
34323b52e3
commit
5a71d1dca7
|
@ -37,11 +37,11 @@ if [ ! -f $config_lb ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
build_dir=`dirname $config_lb`/`sed -n -e 's/^target \(.*\)$/\1/p' $config_lb`
|
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
|
config_py=$build_dir/config.py
|
||||||
|
|
||||||
if [ ! -d $target_subdir ] ; then
|
if [ ! -d $build_dir ] ; then
|
||||||
mkdir -p $target_subdir
|
mkdir -p $build_dir
|
||||||
fi
|
fi
|
||||||
if [ ! -f $config_py ]; then
|
if [ ! -f $config_py ]; then
|
||||||
echo "No linuxbios config script found. Rebuilding it.."
|
echo "No linuxbios config script found. Rebuilding it.."
|
||||||
|
|
Loading…
Reference in New Issue