diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-09-08 15:01:19 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-09-08 15:01:19 +0000 |
commit | dad60489d5dcce58ad6b99f5bc6becc1d4fc7660 (patch) | |
tree | 86c3e533a78d782c54af74ab2172db3e3061e69b | |
parent | 9714894d4f6505e3c49fdb93bc1e7520861a2996 (diff) | |
download | coreboot-dad60489d5dcce58ad6b99f5bc6becc1d4fc7660.tar.xz |
automatically build config.py if it's not there.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1104 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rwxr-xr-x | targets/buildtarget | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/targets/buildtarget b/targets/buildtarget index 7c7dc626d3..273a26bab2 100755 --- a/targets/buildtarget +++ b/targets/buildtarget @@ -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 |