commit 1fa6b7110e44aefeb173713699fc85fc5742baab parent f4c4970208f3cbe818114984963c585759becf94 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Tue, 7 May 2024 12:23:33 +0200 Update the "clean" Makefile target Enclose in quote marks the path toward the file to be deleted since they can have spaces. Diffstat:
| M | Makefile | | | 10 | +++++----- |
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile @@ -86,11 +86,11 @@ install: build_library pkg @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/star-stl" COPYING README.md uninstall: - rm -f $(DESTDIR)$(PREFIX)/lib/$(LIBNAME) - rm -f $(DESTDIR)$(PREFIX)/lib/pkgconfig/sstl.pc - rm -f $(DESTDIR)$(PREFIX)/share/doc/star-stl/COPYING - rm -f $(DESTDIR)$(PREFIX)/share/doc/star-stl/README.md - rm -f $(DESTDIR)$(PREFIX)/include/star/sstl.h + rm -f "$(DESTDIR)$(PREFIX)/lib/$(LIBNAME)" + rm -f "$(DESTDIR)$(PREFIX)/lib/pkgconfig/sstl.pc" + rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-stl/COPYING" + rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-stl/README.md" + rm -f "$(DESTDIR)$(PREFIX)/include/star/sstl.h" ################################################################################ # Miscellaneous targets