git: 56774f85f427 - main - www/tor-browser: fix fetch [1]
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 12 Feb 2023 18:22:29 UTC
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=56774f85f4274f0933c49cc1f5d724484d779110 commit 56774f85f4274f0933c49cc1f5d724484d779110 Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2023-02-12 18:19:53 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2023-02-12 18:22:21 +0000 www/tor-browser: fix fetch [1] While here, prevent spurious quotes from entering the version in MOZ_OPTIONS Reported by: vvd [1] --- www/tor-browser/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/tor-browser/Makefile b/www/tor-browser/Makefile index 2f33c1e749cd..c6304de1c790 100644 --- a/www/tor-browser/Makefile +++ b/www/tor-browser/Makefile @@ -2,7 +2,7 @@ PORTNAME= tor-browser DISTVERSION= 12.0.2 PORTREVISION= 3 # previous DISTVERSION was 12.0-2 which becomes 12.0.2 too in PGKNAME CATEGORIES= www net security wayland -MASTER_SITES= MASTER_SITE_TOR +MASTER_SITES= TOR MASTER_SITE_SUBDIR=torbrowser/${DISTVERSION} DISTNAME= src-firefox-tor-browser-102.7.0esr-${DISTVERSION:R}-1-build1 @@ -48,7 +48,7 @@ MOZ_EXPORT+= MOZ_TELEMETRY_REPORTING="" \ MOZ_APP_DISPLAYNAME="Tor Browser" \ MOZ_APP_NAME="tor-browser" -MOZ_OPTIONS= --with-tor-browser-version="${DISTVERSION}-1" \ +MOZ_OPTIONS= --with-tor-browser-version=${DISTVERSION}-1 \ --enable-official-branding \ --enable-optimize \ --enable-rust-simd \