From 016cc41e6e9843c07fd7918a3b3e46ce9e995b95 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 19 Jun 2001 16:05:24 -0400 Subject: [PATCH] BUG: Exectuable installation must set permissions to 755 in case installer has a umask like 007. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 38d02c06a..5217e5e30 100644 --- a/Makefile.in +++ b/Makefile.in @@ -23,7 +23,7 @@ BIN_INSTALL_DIR = $(exec_prefix)/bin LIB_INSTALL_DIR = $(exec_prefix)/share/CMake INSTALL = @srcdir@/install-sh -c -INSTALL_PROGRAM = ${INSTALL} +INSTALL_PROGRAM = ${INSTALL} -m 755 INSTALL_DATA = ${INSTALL} -m 644 install: