Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Oct 2014 09:55:44 +0000
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?
Message-ID:  <bug-194414-21738-bVbZGlNR31@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-194414-21738@https.bugs.freebsd.org/bugzilla/>
References:  <bug-194414-21738@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194414

Matthias Andree <mandree@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Needs Triage                |Open

--- Comment #5 from Matthias Andree <mandree@FreeBSD.org> ---
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-194414-21738-bVbZGlNR31>