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:
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; \