util/nvmutil: correct install usage

one for directory, then copy the binary

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-12 13:58:38 +00:00
parent 35ba3aef91
commit 5ba0b98fbc
+2 -1
View File
@@ -17,7 +17,8 @@ $(PROG): nvmutil.c
$(CC) $(CFLAGS) $(LDFLAGS) nvmutil.c -o $(PROG)
install: $(PROG)
$(INSTALL) -d $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
chmod 755 $(DESTDIR)$(PREFIX)/bin/$(PROG)
uninstall: