diff options
author | 4 of 7 (Leah Rowe) info@minifree.org <info@minifree.org> | 2017-01-22 03:38:38 +0000 |
---|---|---|
committer | 4 of 7 (Leah Rowe) info@minifree.org <info@minifree.org> | 2017-01-22 03:38:38 +0000 |
commit | db52282cd9c0ea928c4cc640a02c69863ece5b18 (patch) | |
tree | 8711cab4f857cce237674b6ce91e48539090fe59 /oldbuild | |
parent | cab47f3178db195d797db89486dc56383c28aace (diff) | |
download | librebootfr-db52282cd9c0ea928c4cc640a02c69863ece5b18.tar.gz librebootfr-db52282cd9c0ea928c4cc640a02c69863ece5b18.zip |
make use of ./oldbuild, not ./build, in the old build system
Diffstat (limited to 'oldbuild')
-rwxr-xr-x | oldbuild | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -40,15 +40,15 @@ listoptions() { help() { cat <<- EOF - USAGE: ./build <MODE> <OPTION> + USAGE: ./oldbuild <MODE> <OPTION> possible values for 'mode': $(listmodes) - Example: ./build module all - Example: ./build module flashrom [static] - Example: ./build roms withgrub - Example: ./build clean all + Example: ./oldbuild module all + Example: ./oldbuild module flashrom [static] + Example: ./oldbuild roms withgrub + Example: ./oldbuild clean all Refer to the libreboot documentation for more information. EOF @@ -60,7 +60,7 @@ die() { } if [ $# -lt 1 ]; then - die "Wrong number of arguments specified. See './build help'." + die "Wrong number of arguments specified. See './oldbuild help'." fi mode="${1}" @@ -88,11 +88,11 @@ if [ $# -gt 1 ]; then "${build}"/"${mode}"/"${option}" $@ else help - die "Invalid option for '${mode}'. See './build ${mode} list'." + die "Invalid option for '${mode}'. See './oldbuild ${mode} list'." fi else help - die "Invalid mode '${mode}'. See './build help'." + die "Invalid mode '${mode}'. See './oldbuild help'." fi esac else |