From: Alexander Barton Date: Sat, 4 Apr 2015 21:13:10 +0000 (+0200) Subject: Don't install lib/ax/ax-common.sh file with executable bits set X-Git-Url: https://arthur.barton.de/gitweb/?p=ax-unix.git;a=commitdiff_plain;h=02ba8a5ceb8a565fc2b00e89be529a77f97827af Don't install lib/ax/ax-common.sh file with executable bits set It is a library intended to be included ("sourced") by other scripts, it doesn't need to be executable itself! --- diff --git a/lib/ax/Makefile b/lib/ax/Makefile index fcd6756..4c6283e 100644 --- a/lib/ax/Makefile +++ b/lib/ax/Makefile @@ -17,5 +17,5 @@ install-local: ax-common.sh $(DESTDIR)$(PREFIX)/lib/ax install -p -o $(USER) -g $(GROUP) -m 644 README \ $(DESTDIR)$(PREFIX)/lib/ax/README - install -p -o $(USER) -g $(GROUP) -m 755 ax-common.sh \ + install -p -o $(USER) -g $(GROUP) -m 644 ax-common.sh \ $(DESTDIR)$(PREFIX)/lib/ax/ax-common.sh