aboutsummaryrefslogtreecommitdiff
path: root/oldbuild
diff options
context:
space:
mode:
author4 of 7 (Leah Rowe) info@minifree.org <info@minifree.org>2017-01-22 03:38:38 +0000
committer4 of 7 (Leah Rowe) info@minifree.org <info@minifree.org>2017-01-22 03:38:38 +0000
commitdb52282cd9c0ea928c4cc640a02c69863ece5b18 (patch)
tree8711cab4f857cce237674b6ce91e48539090fe59 /oldbuild
parentcab47f3178db195d797db89486dc56383c28aace (diff)
downloadlibrebootfr-db52282cd9c0ea928c4cc640a02c69863ece5b18.tar.gz
librebootfr-db52282cd9c0ea928c4cc640a02c69863ece5b18.zip
make use of ./oldbuild, not ./build, in the old build system
Diffstat (limited to 'oldbuild')
-rwxr-xr-xoldbuild16
1 files changed, 8 insertions, 8 deletions
diff --git a/oldbuild b/oldbuild
index c32bea79..c0902012 100755
--- a/oldbuild
+++ b/oldbuild
@@ -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