[Webkit-unassigned] [Bug 76388] [GTK] Make distcheck is broken when using make -j

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 6 16:31:51 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=76388


Kentaro Hara <haraken at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |abarth at webkit.org




--- Comment #2 from Kentaro Hara <haraken at chromium.org>  2012-02-06 16:31:50 PST ---
(In reply to comment #1)
> It seems this is likely caused by supplemental IDL changes. haraken, do you think you can take a look at this?
> 
> http://trac.webkit.org/changeset/103920
> http://trac.webkit.org/changeset/103729

I guess that the cause is that no dependency is written between $(webcore_built_sources) and $(webcore_sources).

    nodist_libWebCore_la_SOURCES = $(webcore_built_sources)
    libWebCore_la_SOURCES = $(webcore_sources)

We need to guarantee that $(webcore_sources) are built _after_ $(webcore_built_sources). So I guess we can fix the issue by adding the following line:

    $(webcore_sources) : $(webcore_built_sources)

I am making a patch. (But I guess that potentially this issue would have occurred before the [supplemental] change.)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list