aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf
diff options
context:
space:
mode:
authorEdwin Török <edwintorok@gmail.com>2009-08-28 16:12:48 +0000
committerEdwin Török <edwintorok@gmail.com>2009-08-28 16:12:48 +0000
commitab4193ba50b6b5fcda5e2230e4705676ec07b463 (patch)
tree020529ea51993541c32269910bfda56823c6d10f /autoconf
parentb5cc6d8ae5a5813f059b0f03511b29c101c3a8ba (diff)
downloadexternal_llvm-ab4193ba50b6b5fcda5e2230e4705676ec07b463.zip
external_llvm-ab4193ba50b6b5fcda5e2230e4705676ec07b463.tar.gz
external_llvm-ab4193ba50b6b5fcda5e2230e4705676ec07b463.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')
-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])
])