diff options
author | tron <tron> | 1999-07-06 21:52:54 +0000 |
---|---|---|
committer | tron <tron> | 1999-07-06 21:52:54 +0000 |
commit | c07e8a5d7d1f6be52d8b5010af044b140b0d3380 (patch) | |
tree | 0ccceca08eda416a0ce3c1be799d43cb77d58da1 /graphics/gimp | |
parent | 2294bbaf2e354c115c8bf1cd9a951d14e044a941 (diff) | |
download | pkgsrc-c07e8a5d7d1f6be52d8b5010af044b140b0d3380.tar.gz |
Fix check for running X11 required to build this package.
Diffstat (limited to 'graphics/gimp')
-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 |