diff options
author | Jim Jagielski <jim@apache.org> | 2015-04-24 13:29:20 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2015-04-24 13:29:20 +0200 |
commit | f4e7d2d38794f44820d9bd05c9f284be8e0f5232 (patch) | |
tree | 2a37b9b0374ce1f50266a5834479cbc490b52ac7 /configure.in | |
parent | * mod_journald: Remove JournaldCustomLog. It is not needed now when (diff) | |
download | apache2-f4e7d2d38794f44820d9bd05c9f284be8e0f5232.tar.xz apache2-f4e7d2d38794f44820d9bd05c9f284be8e0f5232.zip |
Work around issues w/ "broken" BSD Makefile translation...
If we have gmake, then prefer that.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1675819 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 2dce84e959..961eb22ccd 100644 --- a/configure.in +++ b/configure.in @@ -941,6 +941,8 @@ else # Check whether they've installed GNU make if make --version > /dev/null 2>&1; then BSD_MAKEFILE=no + elif gmake --version > /dev/null 2>&1; then + BSD_MAKEFILE=no else BSD_MAKEFILE=yes fi |