summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2015-04-24 11:29:20 +0000
committerJim Jagielski <jim@apache.org>2015-04-24 11:29:20 +0000
commitf4e7d2d38794f44820d9bd05c9f284be8e0f5232 (patch)
tree2a37b9b0374ce1f50266a5834479cbc490b52ac7 /configure.in
parent148417b8a77d864d2fbfc11511db237178dd2403 (diff)
downloadhttpd-f4e7d2d38794f44820d9bd05c9f284be8e0f5232.tar.gz
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.in2
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