From 6493798d831e3255faafc81de4ec598c06e4cdca Mon Sep 17 00:00:00 2001 From: Torok Edwin Date: Fri, 28 Aug 2009 16:12:48 +0000 Subject: install-sh chmods to 0755 by default, and this causes 'git diff' to show that all the Makefiles changed mode. Fix this by tellint install-sh to chmod only to 0644, these are not executable files after all! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80371 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/m4/config_makefile.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoconf/m4') diff --git a/autoconf/m4/config_makefile.m4 b/autoconf/m4/config_makefile.m4 index f21a256..b1eaffd 100644 --- a/autoconf/m4/config_makefile.m4 +++ b/autoconf/m4/config_makefile.m4 @@ -5,5 +5,5 @@ AC_DEFUN([AC_CONFIG_MAKEFILE], [AC_CONFIG_COMMANDS($1, [${llvm_src}/autoconf/mkinstalldirs `dirname $1` - ${SHELL} ${llvm_src}/autoconf/install-sh -c ${srcdir}/$1 $1]) + ${SHELL} ${llvm_src}/autoconf/install-sh -m 0644 -c ${srcdir}/$1 $1]) ]) -- cgit v1.1