From: Andre Noll Date: Sun, 3 Mar 2019 21:21:26 +0000 (+0100) Subject: build: .a files do not need to be executable. X-Git-Tag: v1.0.2~2 X-Git-Url: http://git.tuebingen.mpg.de/?p=lopsub.git;a=commitdiff_plain;h=e28bd04447619b06af565adc247c9ddeecc2d286;hp=ea2bd7286bd8eae90513f19f1e2eef39f6315447 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. --- 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