diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-10 20:30:48 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-10 20:30:48 (EDT) |
commit | 12c50f7939c02db85f05830c4b9fccf464b3977a (patch) | |
tree | 42c0b72ee957cc2f70b442cefb14923b06cb8507 /resources/scripts/helpers/build/module/coreboot | |
parent | 34270811fce1ecf0bcf3b1363b0dc3dbf284ab09 (diff) | |
download | libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.zip libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.tar.gz libreboot-12c50f7939c02db85f05830c4b9fccf464b3977a.tar.bz2 |
all script: use a standard style
Based on the style used for the script in
resources/scripts/helpers/build/release/
Diffstat (limited to 'resources/scripts/helpers/build/module/coreboot')
-rwxr-xr-x | resources/scripts/helpers/build/module/coreboot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/scripts/helpers/build/module/coreboot b/resources/scripts/helpers/build/module/coreboot index 5a6174f..3d93c8d 100755 --- a/resources/scripts/helpers/build/module/coreboot +++ b/resources/scripts/helpers/build/module/coreboot @@ -29,18 +29,18 @@ set -u -e printf "Building the utilities in coreboot\n" -cd coreboot +cd "coreboot/" # ----------------------------------------- # Build the utilities required by libreboot # ----------------------------------------- # cbfstool -cd util/cbfstool/ +cd "util/cbfstool/" make # done. go back to coreboot dir -cd ../../ +cd "../../" # ------------------------------------- # build reference crossGCC for coreboot @@ -48,7 +48,7 @@ cd ../../ make crossgcc-i386 # done. go back to main libreboot_src directory -cd ../ +cd "../" printf "\n\n" |