From 269904fca05ed23eccb394b600e52c5f4e68bebd Mon Sep 17 00:00:00 2001 From: Albert I Date: Sat, 9 Mar 2019 03:10:18 +0800 Subject: [PATCH] Fix Makefile install derps * Introduced by commit cd97fb4 Signed-off-by: Albert I --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 82baa4d..8eaba05 100644 --- a/Makefile +++ b/Makefile @@ -112,10 +112,10 @@ install-common: shell $(OUT)/mujs.pc install -m 755 $(OUT)/mujs $(DESTDIR)$(bindir) install-static: install-common static - install -m 644 $(OUT)/mujs.a $(DESTDIR)$(libdir) + install -m 644 $(OUT)/libmujs.a $(DESTDIR)$(libdir) install-shared: install-common shared - install -m 755 $(OUT)/mujs.so $(DESTDIR)$(libdir) + install -m 755 $(OUT)/libmujs.so $(DESTDIR)$(libdir) install: install-static