automatically build config.py if it's not there.

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1104 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2003-09-08 15:01:19 +00:00
parent 9714894d4f
commit dad60489d5
1 changed files with 7 additions and 2 deletions

View File

@ -32,8 +32,13 @@ if [ ! -f $config_lb ]; then
fi
if [ ! -f $config_py ]; then
echo "No linuxbios config file found"
exit 1
echo "No linuxbios config script found. Rebuilding it.."
(
cd $config_dir
make config.py
)
echo "done."
# exit 1
fi
# make sure config.py is up-to-date