summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-03-12 13:56:47 +0000
committerLeah Rowe <leah@libreboot.org>2026-03-12 13:56:47 +0000
commit35ba3aef91a1e442b85fa616bb2befe4f295fd4c (patch)
treee5648fe9b581f641809c5574871c212fe56d0622
parentaf1a219e40b198e5b61d5b294826dee4a8eb6ee7 (diff)
util/nvmutil: fix makefile
forgot to include the binary in the path Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--util/nvmutil/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile
index 98b35be4..b256e3b3 100644
--- a/util/nvmutil/Makefile
+++ b/util/nvmutil/Makefile
@@ -17,7 +17,7 @@ $(PROG): nvmutil.c
$(CC) $(CFLAGS) $(LDFLAGS) nvmutil.c -o $(PROG)
install: $(PROG)
- $(INSTALL) -d $(PROG) $(DESTDIR)$(PREFIX)/bin/
+ $(INSTALL) -d $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
chmod 755 $(DESTDIR)$(PREFIX)/bin/$(PROG)
uninstall: