diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-12 18:01:53 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-12 18:05:32 +0100 |
commit | 05b5914b35492ddb4076873e0b6519396dfe92de (patch) | |
tree | bbfd711aaa3c8f42c7d8c8a5dc547c011851210b /include/lib.sh | |
parent | c9696e233389f1f896dc70076cfc03f14f8a940a (diff) |
lib.sh: remove mk()
i don't need it. i can use fx_ instead, on functions
that previously called mk().
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/lib.sh')
-rw-r--r-- | include/lib.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/lib.sh b/include/lib.sh index ba7d5d8c..cb3ba6cc 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -46,14 +46,6 @@ e() printf "%s %s\n" "$1" "$es2" 1>&2 } -mk() -{ - mk_flag="$1" || err "No argument given" - shift 1 && for mk_arg in "$@"; do - x_ ./mk $mk_flag $mk_arg - done; : -} - setvars() { _setvars="" |