From ed3431c6555728b92a607707e3aeecce02df79b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sat, 8 Oct 2016 14:19:35 +0200 Subject: [PATCH 3/3] Makefile: Do not run ldconfig, libtool does it already Also fix permissions of installed library, for debuginfo extraction. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8099403..5baca6a 100644 --- a/Makefile +++ b/Makefile @@ -26,8 +26,7 @@ all: libatg.la test widget install: libatg.la $(LIBTOOL) --mode=install install -D -m0644 atg.h $(DESTDIR)$(INCDIR)/atg.h $(LIBTOOL) --mode=install install -D -m0644 atg_internals.h $(DESTDIR)$(INCDIR)/atg_internals.h - $(LIBTOOL) --mode=install install -D -m0644 libatg.la $(DESTDIR)$(LIBDIR)/libatg.la - -ldconfig + $(LIBTOOL) --mode=install install -D -m0755 libatg.la $(DESTDIR)$(LIBDIR)/libatg.la uninstall: $(LIBTOOL) --mode=uninstall /bin/rm -f $(DESTDIR)$(LIBDIR)/libatg.la $(DESTDIR)$(INCDIR)/atg.h $(DESTDIR)$(INCDIR)/atg_internals.h -- 2.10.1