aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf/m4
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-08-28 16:12:48 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-08-28 16:12:48 +0000
commit6493798d831e3255faafc81de4ec598c06e4cdca (patch)
tree020529ea51993541c32269910bfda56823c6d10f /autoconf/m4
parent6f9bb6f31b37380fa9c4412b400b53eba65b7410 (diff)
downloadexternal_llvm-6493798d831e3255faafc81de4ec598c06e4cdca.zip
external_llvm-6493798d831e3255faafc81de4ec598c06e4cdca.tar.gz
external_llvm-6493798d831e3255faafc81de4ec598c06e4cdca.tar.bz2
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
Diffstat (limited to 'autoconf/m4')
-rw-r--r--autoconf/m4/config_makefile.m42
1 files changed, 1 insertions, 1 deletions
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])
])