diff options
author | kris <kris@FreeBSD.org> | 2006-09-03 01:11:06 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2006-09-03 01:11:06 +0000 |
commit | 8f0dd3d6fc4fbd7ba2008c3594a7d0a4c032a8c3 (patch) | |
tree | 1851fe1dd1ececc5007d9f39829e59b6e80a06d8 | |
parent | bc6196b433f46580d544181ca88509ce8096e613 (diff) | |
download | FreeBSD-ports-8f0dd3d6fc4fbd7ba2008c3594a7d0a4c032a8c3.zip FreeBSD-ports-8f0dd3d6fc4fbd7ba2008c3594a7d0a4c032a8c3.tar.gz |
Allow build on package cluster
-rw-r--r-- | x11/xgrab/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/xgrab/Makefile b/x11/xgrab/Makefile index a79ad5d..a18041d 100644 --- a/x11/xgrab/Makefile +++ b/x11/xgrab/Makefile @@ -30,7 +30,7 @@ MAKE_FLAGS= BINDIR=${PREFIX}/bin MANDIR=${PREFIX}/man/man1 \ # "make depend" blows up XMKMF= xmkmf -.if !defined(DISPLAY) || ${DISPLAY} == "" +.if (!defined(DISPLAY) || ${DISPLAY} == "") && !defined(PACKAGE_BUILDING) IGNORE= Requires an active X session (and DISPLAY variable) to run xrdb. Please compile this while running X. .endif |