From 67c4b6851c385c70c487dbbd32be8b1c5b5b5ce1 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Thu, 27 Feb 2014 19:49:35 +0100 Subject: [PATCH] Add proper permissions for executable files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 42197d4..c8270e3 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ RELEASE=$(shell echo $(VERSION) | cut -f2- -d'-' | sed -e 's/-/./g') mkinstalldirs = /usr/bin/mkdir -p INSTALL = /usr/bin/install INSTALL_DATA = ${INSTALL} -m 644 -t -INSTALL_PROGRAM = ${INSTALL} -t +INSTALL_PROGRAM = ${INSTALL} -m 755 -t INSTALL_SCRIPT = ${INSTALL} -t RM = /usr/bin/rm -f RMRF = /usr/bin/rm -Rf -- 1.8.3.1