From fe630cba5e2f1dc57b318eeaf5f582b12fb39a63 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 12 Mar 2026 13:43:20 +0000 Subject: 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 --- util/nvmutil/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'util') 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) -- cgit v1.2.1