commit be60a2bfa08175bc31ad53277418b1fa19ddf120
parent 2e62bf8ed55be744729a55f6f149865a5e695f92
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 12 Jul 2023 16:11:44 +0200
Fix Makefile uninstall target
The license file to be deleted was not the correct one: it was the
CeCILLv2.1 license whereas the project has since been relicensed in
GPLv3+.
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -101,8 +101,7 @@ install: build_library pkg
uninstall:
rm -f "$(DESTDIR)$(PREFIX)/lib/$(LIBNAME)"
rm -f "$(DESTDIR)$(PREFIX)/lib/pkgconfig/s3d.pc"
- rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-3d/COPYING.en"
- rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-3d/COPYING.fr"
+ rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-3d/COPYING"
rm -f "$(DESTDIR)$(PREFIX)/share/doc/star-3d/README.md"
rm -f "$(DESTDIR)$(PREFIX)/include/star/s3d.h"