summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-12 13:43:20 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-12 13:43:20 +0000
commitfe630cba5e2f1dc57b318eeaf5f582b12fb39a63 (patch)
treee3af9f97d6e33c37d6ca37f88f68e25ba9b85dbe
parent478c994f345af332eb55bd8d89c5dc11c49d934b (diff)
util/nvmutil: use chmod instead, in Makefile
yeah, why not use a tool that's been around since the 80s? Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--util/nvmutil/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile
index 64871c5e..9bf99329 100644
--- a/util/nvmutil/Makefile
+++ b/util/nvmutil/Makefile
@@ -18,7 +18,8 @@ $(PROG): nvmutil.c
install: $(PROG)
mkdir -p $(DESTDIR)$(PREFIX)/bin
- $(INSTALL) -m 755 $(PROG) $(DESTDIR)$(PREFIX)/bin/
+ $(INSTALL) $(PROG) $(DESTDIR)$(PREFIX)/bin/
+ chmod 755 $(DESTDIR)$(PREFIX)/bin/$(PROG)
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(PROG)