diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2019-10-17 20:14:42 -0500 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2019-10-19 17:32:52 -0500 |
commit | ddce689d0582e5c3cfd353645c7d7bbb1f74f5ae (patch) | |
tree | f215a0919ab8275e97305d1cb5b057082f69c714 /projects/cros-ec | |
parent | 4b8a27ade3f4cdb8b415972124e868bc2c0dd480 (diff) | |
download | librebootfr-ddce689d0582e5c3cfd353645c7d7bbb1f74f5ae.tar.gz librebootfr-ddce689d0582e5c3cfd353645c7d7bbb1f74f5ae.zip |
Remove dependencies_check() from project scripts
Removing the check function allows dependencies() to be executed,
printing the list of dependencies. It was not executed before due to
the way check functions are handled; check functions are executed
before functions with the same name (minus the "_check" suffix) in
order to determine whether calling the function is necessary.
Diffstat (limited to 'projects/cros-ec')
-rwxr-xr-x | projects/cros-ec/cros-ec | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/projects/cros-ec/cros-ec b/projects/cros-ec/cros-ec index 1df44feb..55dc676e 100755 --- a/projects/cros-ec/cros-ec +++ b/projects/cros-ec/cros-ec @@ -23,10 +23,6 @@ dependencies() { project_dependencies "$project" "$@" } -dependencies_check() { - project_dependencies_check "$project" "$@" -} - usage() { project_usage_actions "$project" project_usage_arguments "$project" "$@" |