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/coreboot | |
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/coreboot')
-rwxr-xr-x | projects/coreboot/coreboot | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/projects/coreboot/coreboot b/projects/coreboot/coreboot index 046a4de1..e224cccc 100755 --- a/projects/coreboot/coreboot +++ b/projects/coreboot/coreboot @@ -28,10 +28,6 @@ dependencies() { project_dependencies "$project" "$@" } -dependencies_check() { - project_dependencies_check "$project" "$@" -} - download() { local repository=$project |