diff options
author | joerg <joerg@pkgsrc.org> | 2006-12-15 20:43:00 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-12-15 20:43:00 +0000 |
commit | 1662e47171e6ce8e00049ee83a61d82af0c8ed96 (patch) | |
tree | b5d464e045b1dec7ab4ea029da792f7c85cf797b /x11/randrproto | |
parent | 58c314423618d9e74407834dd613376be4ef0878 (diff) | |
download | pkgsrc-1662e47171e6ce8e00049ee83a61d82af0c8ed96.tar.gz |
Don't assume that we have a builtin version of the X11 proto packages,
if LOCALBASE and X11BASE are identical.
Diffstat (limited to 'x11/randrproto')
-rw-r--r-- | x11/randrproto/builtin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/randrproto/builtin.mk b/x11/randrproto/builtin.mk index 07b89c7b225..3733d4dd1e4 100644 --- a/x11/randrproto/builtin.mk +++ b/x11/randrproto/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.1.1.1 2006/04/18 17:14:45 reed Exp $ +# $NetBSD: builtin.mk,v 1.2 2006/12/15 20:43:00 joerg Exp $ # TODO: builtin.mk failed to use native on XFree86 # the two headers are identical with native XFree86 @@ -14,7 +14,7 @@ BUILTIN_FIND_FILES.H_RANDR= ${X11BASE}/include/X11/extensions/randr.h ### Determine if there is a built-in implementation of the package and ### set IS_BUILTIN.<pkg> appropriately ("yes" or "no"). ### -.if !defined(IS_BUILTIN.randrproto) +.if !defined(IS_BUILTIN.randrproto) || ${X11BASE} == ${LOCALBASE} IS_BUILTIN.randrproto= no # # Here, we skip checking whether the files are under ${LOCALBASE} since |