diff options
author | tron <tron@pkgsrc.org> | 1999-07-06 21:52:54 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-07-06 21:52:54 +0000 |
commit | 99ce3058f5041fac689308b7f8dbbe88229d32f3 (patch) | |
tree | 0ccceca08eda416a0ce3c1be799d43cb77d58da1 /graphics | |
parent | fe94928510086b9bca2bcedee031365791c746b1 (diff) | |
download | pkgsrc-99ce3058f5041fac689308b7f8dbbe88229d32f3.tar.gz |
Fix check for running X11 required to build this package.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gimp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gimp/Makefile b/graphics/gimp/Makefile index c355a01296d..c11793f3a56 100644 --- a/graphics/gimp/Makefile +++ b/graphics/gimp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 1999/05/05 21:01:46 tv Exp $ +# $NetBSD: Makefile,v 1.39 1999/07/06 21:52:54 tron Exp $ DISTNAME= gimp-1.0.4 CATEGORIES= graphics @@ -41,7 +41,7 @@ post-configure: ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) pre-build: - @if [ "$$DISPLAY" = "1" ]; then \ + @if [ "$$DISPLAY" = "" ]; then \ ${ECHO} "${DISTNAME} can only be built under X11."; \ exit 1; \ fi |