summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2022-05-08 10:23:33 +0000
committernia <nia@pkgsrc.org>2022-05-08 10:23:33 +0000
commit23e43a8be76c344023b4832cb0170710ace6a952 (patch)
tree407d3df97c9dca689e5c3a77fc1c7297f793bb6f /audio
parentecb5577648474f18caa9a77f7ffa6384217062ce (diff)
downloadpkgsrc-23e43a8be76c344023b4832cb0170710ace6a952.tar.gz
jack: use numeric comparison with OPSYS_VERSION
Diffstat (limited to 'audio')
-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 41750220215..6127ad7a8e8 100644
--- a/audio/jack/platform.mk
+++ b/audio/jack/platform.mk
@@ -1,4 +1,4 @@
-# $NetBSD: platform.mk,v 1.1 2021/11/13 10:48:03 nia Exp $
+# $NetBSD: platform.mk,v 1.2 2022/05/08 10:23:33 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" && empty(OPSYS_VERSION:M[5-8].*)
+.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} > 090000
PLATFORM_SUPPORTS_JACK= yes
.endif