mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
9524ef5cfa
that all the Makefiles changed mode. Fix this by tellint install-sh to chmod only to 0644, these are not executable files after all! llvm-svn: 80371
10 lines
301 B
Plaintext
10 lines
301 B
Plaintext
#
|
|
# Configure a Makefile without clobbering it if it exists and is not out of
|
|
# date. This macro is unique to LLVM.
|
|
#
|
|
AC_DEFUN([AC_CONFIG_MAKEFILE],
|
|
[AC_CONFIG_COMMANDS($1,
|
|
[${llvm_src}/autoconf/mkinstalldirs `dirname $1`
|
|
${SHELL} ${llvm_src}/autoconf/install-sh -m 0644 -c ${srcdir}/$1 $1])
|
|
])
|