diff options
author | grant <grant@pkgsrc.org> | 2005-08-20 10:50:52 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-08-20 10:50:52 +0000 |
commit | e1e3faa147e1c845653e56d40391e33d5a0c5a09 (patch) | |
tree | 8cfc7a3db47ef47f6a87882cf5483974c3f7bb84 | |
parent | 0493ce98e5f1df0247d4efbb86697cd23d423b13 (diff) | |
download | pkgsrc-e1e3faa147e1c845653e56d40391e33d5a0c5a09.tar.gz |
fix a conditional to appease bmake
-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 |