diff options
author | Brad King <brad.king@kitware.com> | 2001-06-19 20:05:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-06-19 20:05:24 (GMT) |
commit | 016cc41e6e9843c07fd7918a3b3e46ce9e995b95 (patch) | |
tree | 700078794e0cfbf399226a6641c601d06fb56d6d /Makefile.in | |
parent | a5087b8cca258f3e764fe47a9bcdabeb9df703a9 (diff) | |
download | CMake-016cc41e6e9843c07fd7918a3b3e46ce9e995b95.zip CMake-016cc41e6e9843c07fd7918a3b3e46ce9e995b95.tar.gz CMake-016cc41e6e9843c07fd7918a3b3e46ce9e995b95.tar.bz2 |
BUG: Exectuable installation must set permissions to 755 in case installer has a umask like 007.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 38d02c0..5217e5e 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: |