[Bug 194414] REGRESSION: www/firefox-i18n no longer depends on www/firefox at build-time, gecko.mk framework bug?

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Oct 18 09:55:44 UTC 2014


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=194414

Matthias Andree <mandree at FreeBSD.org> changed:

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

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


More information about the freebsd-gecko mailing list