From 02ba8a5ceb8a565fc2b00e89be529a77f97827af Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 4 Apr 2015 23:13:10 +0200 Subject: [PATCH] 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! --- lib/ax/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2