From e28bd04447619b06af565adc247c9ddeecc2d286 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 3 Mar 2019 22:21:26 +0100 Subject: [PATCH 1/1] build: .a files do not need to be executable. We currently install liblopsub.a with mode 755, but the executable bit is not needed. In fact, lintian complains about this. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ff12fa..de6badf 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ install: liblopsub.a lopsub.7 $(INSTALL) -d $(DESTDIR)$(PREFIX)/lib $(DESTDIR)$(PREFIX)/include \ $(DESTDIR)$(PREFIX)/man/man1 $(DESTDIR)$(PREFIX)/man/man5 \ $(DESTDIR)$(PREFIX)/man/man7 $(DESTDIR)$(PREFIX)/bin - $(INSTALL) -m 755 liblopsub.a $(DESTDIR)$(PREFIX)/lib + $(INSTALL) -m 644 liblopsub.a $(DESTDIR)$(PREFIX)/lib $(INSTALL) -m 755 lopsubgen $(DESTDIR)$(PREFIX)/bin $(INSTALL) -m 644 lopsub.h $(DESTDIR)$(PREFIX)/include $(INSTALL) -m 644 lopsub-internal.h $(DESTDIR)$(PREFIX)/include -- 2.39.2