From 7ed30d4bcbad3ca35c4c52bc9428a3ea9489c83b Mon Sep 17 00:00:00 2001 From: Martin Duquesnoy Date: Sat, 6 Dec 2008 01:21:20 +0100 Subject: [PATCH] makefile: Switch chmod 777 -> 755 for install the binary --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 37c3bbd..3395aa2 100755 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ install : ${BIN} @echo "installing binary file to ${INSTALLPATH}${BIN}" @cp ${BIN} ${INSTALLPATH} - @chmod 777 ${INSTALLPATH}${BIN} + @chmod 755 ${INSTALLPATH}${BIN} @echo "installed." uninstall :