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

Matthias Andree <mand...@freebsd.org> changed:

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

--- Comment #5 from Matthias Andree <mand...@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.
_______________________________________________
freebsd-gecko@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-gecko
To unsubscribe, send any mail to "freebsd-gecko-unsubscr...@freebsd.org"

Reply via email to