diff options
author | nia <nia@pkgsrc.org> | 2022-05-05 08:21:33 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2022-05-05 08:21:33 +0000 |
commit | cb07a24bec2df2e083a25e197013102dba8b4953 (patch) | |
tree | 23174d317a435d9a971b624a7d70d5d26b4111dd /www/firefox68 | |
parent | 7d689aa83a8fe70897bc014167a7dbcb5e92beb9 (diff) | |
download | pkgsrc-cb07a24bec2df2e083a25e197013102dba8b4953.tar.gz |
firefox*: Use OPSYS_VERSION to numerically compare NetBSD versions
Diffstat (limited to 'www/firefox68')
-rw-r--r-- | www/firefox68/options.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox68/options.mk b/www/firefox68/options.mk index 8ab49ee5d08..2903fb7be45 100644 --- a/www/firefox68/options.mk +++ b/www/firefox68/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.12 2020/11/18 22:38:22 riastradh Exp $ +# $NetBSD: options.mk,v 1.13 2022/05/05 08:21:33 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.firefox @@ -13,7 +13,7 @@ PKG_SUGGESTED_OPTIONS+= pulseaudio mozilla-jemalloc dbus webrtc PKG_SUGGESTED_OPTIONS+= dbus .endif -.if ${OPSYS} == "NetBSD" && empty(OS_VERSION:M[0-8].*) +.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} >= 090000 PKG_SUGGESTED_OPTIONS+= webrtc .endif |