star-cem

Compute the position of the sun
git clone git://git.meso-star.fr/star-cem.git
Log | Files | Refs | README | LICENSE

commit 013e2e967e1e1dd72cb8b369e8bce3cc8799433c
parent c2d62d4c323bea5015569299f4556797a51c30b5
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 13 Nov 2025 16:30:19 +0100

Fix the installation target for the shared library

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -117,7 +117,7 @@ install: library util pkg chmod "$${mode}" "$${prefix}/$${i##*/}"; \ done; \ }; \ - if [ "$(LIB_TYPE)" = "STATIC" ]; then mode=644; else mode = 755; fi; \ + if [ "$(LIB_TYPE)" = "STATIC" ]; then mode=644; else mode=755; fi; \ install "$${mode}" "$(DESTDIR)$(LIBPREFIX)" $(LIBNAME); \ install 755 "$(DESTDIR)$(BINPREFIX)" scem; \ install 644 "$(DESTDIR)$(MANPREFIX)/man1" doc/scem.1; \