⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 126891 in webkit


Ignore:
Timestamp:
Aug 28, 2012, 10:40:19 AM (14 years ago)
Author:
kov@webkit.org
Message:

[GTK] Does not regenerate CSS-related sources when configuration changes
https://bugs.webkit.org/show_bug.cgi?id=94927

Reviewed by Eric Seidel.

In bug 94094 the gtk EWS consistently failed to build the patch. The
reason that happens is the .in files have not been touched, so the CSS
property names and value keywords sources are not regenerated. By
adding an explicit dependency on configure.ac and GNUmakefile.am the
problem is fixed (see bug 82465, attachment 160265).

  • GNUmakefile.am: add explicit dependency from the CSS-related .in files

on configure.ac and WebCore's GNUmakefile.am

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r126890 r126891  
     12012-08-28  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] Does not regenerate CSS-related sources when configuration changes
     4        https://bugs.webkit.org/show_bug.cgi?id=94927
     5
     6        Reviewed by Eric Seidel.
     7
     8        In bug 94094 the gtk EWS consistently failed to build the patch. The
     9        reason that happens is the .in files have not been touched, so the CSS
     10        property names and value keywords sources are not regenerated. By
     11        adding an explicit dependency on configure.ac and GNUmakefile.am the
     12        problem is fixed (see bug 82465, attachment 160265).
     13
     14        * GNUmakefile.am: add explicit dependency from the CSS-related .in files
     15        on configure.ac and WebCore's GNUmakefile.am
     16
    1172012-08-28  Sheriff Bot  <webkit.review.bot@gmail.com>
    218
  • trunk/Source/WebCore/GNUmakefile.am

    r126857 r126891  
    802802webcore_cppflags += $(foreach define,$(feature_defines),-D$(define))
    803803
     804
     805$(WEBCORE_CSS_PROPERTY_NAMES): $(srcdir)/configure.ac $(srcdir)/Source/WebCore/GNUmakefile.am
     806
     807$(WEBCORE_CSS_VALUE_KEYWORDS): $(srcdir)/configure.ac $(srcdir)/Source/WebCore/GNUmakefile.am
    804808
    805809DerivedSources/WebCore/CSSPropertyNames.cpp: DerivedSources/WebCore/CSSPropertyNames.h
Note: See TracChangeset for help on using the changeset viewer.