util/nvmutil: fix makefile

forgot to include the binary in the path

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-12 13:56:47 +00:00
parent af1a219e40
commit 35ba3aef91

View File

@@ -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: