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:
parent
9714894d4f
commit
dad60489d5
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue