From owner-freebsd-gecko@FreeBSD.ORG Sat Oct 18 09:55:44 2014 Return-Path: Delivered-To: gecko@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79B6A942 for ; Sat, 18 Oct 2014 09:55:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60E6CB04 for ; Sat, 18 Oct 2014 09:55:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s9I9tiOJ018980 for ; Sat, 18 Oct 2014 09:55:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gecko@FreeBSD.org Subject: [Bug 194414] REGRESSION: www/firefox-i18n no longer depends on www/firefox at build-time, gecko.mk framework bug? Date: Sat, 18 Oct 2014 09:55:44 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mandree@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2014 09:55:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194414 Matthias Andree changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open --- Comment #5 from Matthias Andree --- https://dpaste.de/tj0v has a trace of the expansion. The problem spot is: Searching for /usr/local/bin/firefox...Looking for "/usr/local/bin/firefox"...Caching 04:46:03 Sep 25, 2014 for /usr/local/bin/firefox Global:_GECKO_INSTALLED_VER = Mozilla Firefox 32.0.3 Applying :M to "Mozilla Firefox 32.0.3" Pattern :[0-9][0-9]* Result is "32.0.3" Applying :C to "32.0.3" Result is "32" Global:_GECKO_INSTALLED_VER = 32 ... _GECKO_HIGHEST_VERSION:= 33 .if defined(_GECKO_INSTALLED_VER) && ${_GECKO_INSTALLED_VER} == 33 _GECKO_WANTED_VERSION:= 33 .endif Now the surrounding .ifs prevent _GECKO_WANTED_VERSION assignment, and thus the assignments to BUILD/RUN_DEPENDS go missing: Global:BUILD_DEPENDS = ${${_GECKO_WANTED_VERSION}_DEPENDS} Global:RUN_DEPENDS = ${${_GECKO_WANTED_VERSION}_DEPENDS} You will not see this bug if you have firefox 33 installed, but if I still have firefox 32 and firefox-i18n 32 installed, then the depends will be missing. -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.