diff options
author | grant <grant> | 2005-08-20 10:50:52 +0000 |
---|---|---|
committer | grant <grant> | 2005-08-20 10:50:52 +0000 |
commit | 2ca652b2f40e869860723c8e635c6bb51296eca9 (patch) | |
tree | 8cfc7a3db47ef47f6a87882cf5483974c3f7bb84 /x11 | |
parent | 45dce6a6f168d83405fb8c6c3cef5f391adda744 (diff) | |
download | pkgsrc-2ca652b2f40e869860723c8e635c6bb51296eca9.tar.gz |
fix a conditional to appease bmake
Diffstat (limited to 'x11')
-rw-r--r-- | x11/fox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/fox/Makefile b/x11/fox/Makefile index 0d0b14c976f..a40b0882d90 100644 --- a/x11/fox/Makefile +++ b/x11/fox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2005/08/02 10:26:43 adam Exp $ +# $NetBSD: Makefile,v 1.28 2005/08/20 10:50:52 grant Exp $ DISTNAME= fox-1.4.17 CATEGORIES= x11 @@ -19,7 +19,7 @@ CONFIGURE_ARGS+= --with-x .include "../../mk/bsd.prefs.mk" # NetBSD < 3.0 does not have getpwnam_r() getpwuin_r() -.if (${OPSYS} == "NetBSD") && (${OS_VERSION:R} < 3) +.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[1-2]*) CONFIGURE_ARGS+= --disable-threadsafe .endif |