commit b8beed68ebd033ddf0e6e609259bf1cebe8650fd
parent 1c6561edda775a33ac6f560008c1c75a8a9da77f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Sat, 27 Apr 2024 14:25:56 +0200
Corrected installation of license and README files
They were copied into the wrong directory, in fact the stardis
directory, and therefore overwritten files already installed.
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
@@ -86,16 +86,16 @@ install: build_executable man
@$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/man/man1" doc/sgreen.1
@$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/man/man5" doc/sgreen-input.5
@$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/man/man5" doc/sgreen-output.5
- @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/stardis" COPYING
- @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/stardis" README.md
+ @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/stardis-green" COPYING
+ @$(SHELL) make.sh install "$(DESTDIR)$(PREFIX)/share/doc/stardis-green" README.md
uninstall:
rm -f "$(DESTDIR)$(PREFIX)/bin/sgreen"
rm -f "$(DESTDIR)$(PREFIX)/share/man/man1/sgreen.1"
rm -f "$(DESTDIR)$(PREFIX)/share/man/man5/sgreen-input.5"
rm -f "$(DESTDIR)$(PREFIX)/share/man/man5/sgreen-output.5"
- rm -f "$(DESTDIR)$(PREFIX)/share/doc/stardis/COPYING"
- rm -f "$(DESTDIR)$(PREFIX)/share/doc/stardis/README.md"
+ rm -f "$(DESTDIR)$(PREFIX)/share/doc/stardis-green/COPYING"
+ rm -f "$(DESTDIR)$(PREFIX)/share/doc/stardis-green/README.md"
################################################################################
# Miscellaneous targets