diff options
author | dbaker <dbaker@FreeBSD.org> | 1999-07-23 05:34:54 +0000 |
---|---|---|
committer | dbaker <dbaker@FreeBSD.org> | 1999-07-23 05:34:54 +0000 |
commit | 6369b88d559d1c81ae4a328cd5bc66a44aab613a (patch) | |
tree | dc050bf3b3414dde77f5f9f016a961acd30521a1 /x11/emu/Makefile | |
parent | 2c7fe251a39dcb2cdc04bdca398e459a4d71ef0b (diff) | |
download | FreeBSD-ports-6369b88d559d1c81ae4a328cd5bc66a44aab613a.zip FreeBSD-ports-6369b88d559d1c81ae4a328cd5bc66a44aab613a.tar.gz |
makefile's check for existance of DISPLAY only checked if the variable
was defined, and didn't not check the possibility of an empty DISPLAY, which
was the cause of the packages building error.
Diffstat (limited to 'x11/emu/Makefile')
-rw-r--r-- | x11/emu/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/x11/emu/Makefile b/x11/emu/Makefile index 5da7003..15b4e61 100644 --- a/x11/emu/Makefile +++ b/x11/emu/Makefile @@ -3,7 +3,7 @@ # Date created: 13 September 1994 # Whom: jkh # -# $Id: Makefile,v 1.12 1998/08/20 07:35:23 asami Exp $ +# $Id: Makefile,v 1.13 1998/10/05 05:17:56 steve Exp $ # DISTNAME= emu-1.31 @@ -14,9 +14,10 @@ MASTER_SITE_SUBDIR= applications MAINTAINER= me@FreeBSD.org -.if !defined(DISPLAY) -BROKEN= Requires an X Display to build +.if !defined(DISPLAY) || ${DISPLAY} == "" +BROKEN= "Requires an active X session (and DISPLAY variable) to run xrdb. Please compile this while running X." .endif + USE_IMAKE= yes WRKSRC= ${WRKDIR}/emu MAN1= emu.1 |