diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-03 02:13:01 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-03 02:13:01 +0000 |
commit | d1ca21628cb2c3eb32e65159065209b678ba2e59 (patch) | |
tree | 06676cf2e686bd318c4a2855cf7208b8ba840236 | |
parent | e63fe256dfc5d0c75235974960412b3ac83e2e3c (diff) |
util/nvmutil: Remove the correct binary on uninstall
Signed-off-by: Leah Rowe <leah@libreboot.org>
-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 b946a193..b8ec2ad3 100644 --- a/util/nvmutil/Makefile +++ b/util/nvmutil/Makefile @@ -15,7 +15,7 @@ install: $(INSTALL) nvm $(DESTDIR)$(PREFIX)/bin/nvm uninstall: - rm -f $(DESTDIR)$(PREFIX)/nvm + rm -f $(DESTDIR)$(PREFIX)/bin/nvm distclean: rm -f nvm |