소스 검색

BUG: Exectuable installation must set permissions to 755 in case installer has a umask like 007.

Brad King 24 년 전
부모
커밋
016cc41e6e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Makefile.in

+ 1 - 1
Makefile.in

@@ -23,7 +23,7 @@ BIN_INSTALL_DIR = $(exec_prefix)/bin
 LIB_INSTALL_DIR = $(exec_prefix)/share/CMake
 LIB_INSTALL_DIR = $(exec_prefix)/share/CMake
 
 
 INSTALL =		@srcdir@/install-sh -c
 INSTALL =		@srcdir@/install-sh -c
-INSTALL_PROGRAM =	${INSTALL}
+INSTALL_PROGRAM =	${INSTALL} -m 755
 INSTALL_DATA =		${INSTALL} -m 644
 INSTALL_DATA =		${INSTALL} -m 644
 
 
 install:
 install: