diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-03 02:05:49 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-03 02:06:12 +0000 |
commit | 8008838abbc659e81de07075f3939b0b8af5ca12 (patch) | |
tree | c43c4c92ff52598a0fc5960848997d6776bed633 /util/nvmutil/Makefile | |
parent | 982f257f58acc729cbb93c239b1fa37d9bef5834 (diff) |
util/nvmutil: Don't clean when doing uninstall
The user might wish to uninstall, but not remove the
build that they just did.
The user can still do make clean if they wish.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'util/nvmutil/Makefile')
-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 317635f3..bd1d70fa 100644 --- a/util/nvmutil/Makefile +++ b/util/nvmutil/Makefile @@ -13,7 +13,7 @@ nvm: nvmutil.c install: install nvm $(DESTDIR)$(PREFIX)/bin/nvm -uninstall: clean +uninstall: rm -f $(DESTDIR)$(PREFIX)/nvm distclean: |