diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-23 20:53:26 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-10-01 01:23:30 -0400 |
commit | a433b359f74228c4b9106d1c7ee38f864a909a13 (patch) | |
tree | f00debb07d9894b115bd95911d7c0f2c41802ca0 | |
parent | bb0b5db53e777fe3f966ec6f0cbddcf00153d4bf (diff) | |
download | librebootfr-a433b359f74228c4b9106d1c7ee38f864a909a13.tar.gz librebootfr-a433b359f74228c4b9106d1c7ee38f864a909a13.zip |
Replace a function call in Coreboot action script
'project_action' was used instead of the intended
'project_action_arguments' function, I presume, as project_action does
not actually carry out the argument action--contrary to what the name
may seem to imply.
-rwxr-xr-x | projects/coreboot/coreboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/coreboot/coreboot b/projects/coreboot/coreboot index f3f5d783..f577ca26 100755 --- a/projects/coreboot/coreboot +++ b/projects/coreboot/coreboot @@ -79,7 +79,7 @@ build() { git_project_checkout "$project" "$repository" "$payload" "$@" fi - project_action "checkout" "vboot" "devices" + project_action_arguments "checkout" "vboot" "devices" rm -f "$sources_path/.xcompile" |