diff options
author | sbd <sbd@pkgsrc.org> | 2011-10-15 03:15:37 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2011-10-15 03:15:37 +0000 |
commit | f2ec1ea96c6c6fe2150ccf318c3359728aedf045 (patch) | |
tree | 99ce976cfe5eadd7ed0f6da13024a2e0b4e1e7f7 /mk | |
parent | e9d40423c6b687b5f868e1bcfa1397b70e33af38 (diff) | |
download | pkgsrc-f2ec1ea96c6c6fe2150ccf318c3359728aedf045.tar.gz |
Change the X11_TYPE conditional to work with the switch in the default
X11_TYPE to modular.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/platform/Linux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/platform/Linux.mk b/mk/platform/Linux.mk index a05fa0f0dd3..fbce029ee09 100644 --- a/mk/platform/Linux.mk +++ b/mk/platform/Linux.mk @@ -1,9 +1,9 @@ -# $NetBSD: Linux.mk,v 1.43 2011/08/22 15:17:53 cheusov Exp $ +# $NetBSD: Linux.mk,v 1.44 2011/10/15 03:15:37 sbd Exp $ # # Variable definitions for the Linux operating system. ECHO_N?= ${ECHO} -n -.if !defined(X11_TYPE) || ${X11_TYPE} == "native" +.if defined(X11_TYPE) && ${X11_TYPE} == "native" IMAKE_MAKE?= ${GMAKE} # program which gets invoked by imake IMAKE_TOOLS= gmake # extra tools required when we use imake .endif |