summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2022-06-22 10:12:30 +0000
committernia <nia@pkgsrc.org>2022-06-22 10:12:30 +0000
commit9d48ee895dc955399b23748349dbd5457537f695 (patch)
tree5e895ad8f7fd363c4a347bc1b254c415e9cfefb0
parentb7e8de757888acfd78d79d894e8486dfff50d6ec (diff)
downloadpkgsrc-9d48ee895dc955399b23748349dbd5457537f695.tar.gz
jack: fix sense of condition. jack works on netbsd-9.
-rw-r--r--audio/jack/platform.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/jack/platform.mk b/audio/jack/platform.mk
index 6127ad7a8e8..a2813bc9243 100644
--- a/audio/jack/platform.mk
+++ b/audio/jack/platform.mk
@@ -1,4 +1,4 @@
-# $NetBSD: platform.mk,v 1.2 2022/05/08 10:23:33 nia Exp $
+# $NetBSD: platform.mk,v 1.3 2022/06/22 10:12:30 nia Exp $
.if !defined(PLATFORM_SUPPORTS_JACK)
. include "../../mk/bsd.fast.prefs.mk"
@@ -6,7 +6,7 @@
JACK_PLATFORMS+= Darwin-*-*
JACK_PLATFORMS+= Linux-*-*
-.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} > 090000
+.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} >= 090000
PLATFORM_SUPPORTS_JACK= yes
.endif