mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-06 10:25:53 +08:00
16107833c2
* m4/make-check.m4 (AC_PROG_MAKE_CASE_SENSITIVE): New macro,... * configure.ac: ... called here. * Makefile.am ($(abs_srcdir)/INSTALL, INSTALL): Return to... ($(srcdir)/INSTALL): ...this, but enclose the rule in "if MAKE_CASE_SENSITIVE". Signed-off-by: Stepan Kasal <skasal@redhat.com>
27 lines
894 B
Plaintext
27 lines
894 B
Plaintext
# make-case.m4 serial 0
|
|
dnl Copyright (C) 2008 Free Software Foundation, Inc.
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
# AC_PROG_MAKE_CASE_SENSITIVE
|
|
# ---------------------------
|
|
# Checks whether make is configured to be case insensitive; if yes,
|
|
# sets AM_CONDITIONAL MAKE_CASE_SENSITIVE.
|
|
#
|
|
AC_DEFUN([AC_PROG_MAKE_CASE_SENSITIVE],
|
|
[AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
|
AC_CACHE_CHECK([whether ${MAKE-make} is case sensitive],
|
|
[ac_cv_prog_make_${ac_make}_case],
|
|
[echo all: >conftest.make
|
|
if ${MAKE-make} -f conftest.make ALL >/dev/null 2>&1; then
|
|
ac_res=no
|
|
else
|
|
ac_res=yes
|
|
fi
|
|
eval ac_cv_prog_make_${ac_make}_case=$ac_res
|
|
rm -f conftest.make])
|
|
AM_CONDITIONAL([MAKE_CASE_SENSITIVE],
|
|
[eval test \$ac_cv_prog_make_${ac_make}_case = yes])
|
|
])
|