diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-03-12 13:56:47 +0000 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-03-12 13:56:47 +0000 |
| commit | 35ba3aef91a1e442b85fa616bb2befe4f295fd4c (patch) | |
| tree | e5648fe9b581f641809c5574871c212fe56d0622 /util/nvmutil | |
| parent | af1a219e40b198e5b61d5b294826dee4a8eb6ee7 (diff) | |
util/nvmutil: fix makefile
forgot to include the binary in the path
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil')
| -rw-r--r-- | util/nvmutil/Makefile | 2 |
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: |
