diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-14 14:58:13 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-14 14:58:13 (EST) |
commit | fe6259ac9875cdaf6d167d58935705251dcad6d3 (patch) | |
tree | 025581079c0553d890cd947256353f852b78979f | |
parent | 315c275b4c361bcc490fe20e5ab313b23f092686 (diff) | |
download | libreboot-fe6259ac9875cdaf6d167d58935705251dcad6d3.zip libreboot-fe6259ac9875cdaf6d167d58935705251dcad6d3.tar.gz libreboot-fe6259ac9875cdaf6d167d58935705251dcad6d3.tar.bz2 |
Move creation of bin/ directory to the "build" script
-rwxr-xr-x | build | 7 | ||||
-rwxr-xr-x | builddeps | 5 |
2 files changed, 6 insertions, 6 deletions
@@ -21,7 +21,12 @@ set -u -e -v -# Build the ROM's +# Build the ROM images + +if [ ! -d "bin" ] +then + mkdir bin/ +fi # MAKE SURE THAT YOU RAN "buildall" OR "builddeps" *AT LEAST ONCE* # BEFORE RUNNING THIS! @@ -20,11 +20,6 @@ set -u -e -v -if [ ! -d "bin" ] -then - mkdir bin/ -fi - # Build utilities needed in coreboot directory # -------------------------------------------------------------------- |