summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-06 12:19:33 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-06 12:19:33 (EDT)
commit0524ef6360ff3539b05a64d49fade64a5317f7e8 (patch)
treeaed6059a56ddba8cae6d6cd2ef041ff4583f2aa6
parentcb5bec73a21c45bb65b552c9eedf05c4d714f69a (diff)
build: Drop -v option from mkdir and cp
This is non-standard and only optionally supported by BusyBox since version 1.23.0.
-rwxr-xr-xbuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build
index 3013e13..cc4f150 100755
--- a/build
+++ b/build
@@ -13,9 +13,9 @@ TABLES = \
INSTALL = set -e; \
INSTALL() { \
i=0; for d in "$${@}"; do : $$((i += 1)); done; \
- mkdir -pv "$${d}"; \
+ mkdir -p "$${d}"; \
for s in "$${@}"; do [ $$((i -= 1)) -eq 0 ] && break; \
- cp -v "$${s}" "$${d}"; \
+ cp "$${s}" "$${d}"; \
done; \
}; INSTALL