diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-11-05 16:51:38 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-11-05 16:51:38 +0000 |
commit | 4d85406f294e338756cc783a988255193db34c89 (patch) | |
tree | 1f039c758ea58652dc4fc33fa48349117c387793 | |
parent | f88a1d5340270beccbfa9a4f4b269430f61e8742 (diff) |
avoid hardcoding MAKE in various makefiles.
Fuck GNU and their idiot-proof configury that gets in our way each and
every time.
okay matthieu@
-rw-r--r-- | share/mk/bsd.xorg.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index e67af87e8..21fb304cc 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.20 2007/05/01 08:31:47 espie Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.21 2007/11/05 16:51:37 espie Exp $ -*- makefile -*- # # Copyright © 2006 Matthieu Herrb # @@ -45,7 +45,8 @@ _cache= --cache-file=${XOBJDIR}/xorg-config.cache.${MACHINE} CFLAGS+= $(COPTS) CONFIGURE_ENV= PKG_CONFIG_LIBDIR="$(PKG_CONFIG_LIBDIR)" \ - CFLAGS="$(CFLAGS:C/ *$//)" + CFLAGS="$(CFLAGS:C/ *$//)" \ + MAKE="${MAKE}" AUTOTOOLS_ENV= AUTOMAKE_VERSION="$(AUTOMAKE_VERSION)" \ AUTOCONF_VERSION="$(AUTOCONF_VERSION)" \ |