Changeset 160304 in webkit


Ignore:
Timestamp:
Dec 9, 2013 1:55:49 AM (10 years ago)
Author:
Gustavo Noronha Silva
Message:

[GTK] run-webkit-tests may DOS the system, specially in debug builds
https://bugs.webkit.org/show_bug.cgi?id=125436

Reviewed by Martin Robinson.

  • GNUmakefile.am: use -no-fast-install for WebKitWebProcess and WebKitPluginProcess so

they do not need to be relinked the first time they are executed in-tree.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r160303 r160304  
     12013-12-09  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] run-webkit-tests may DOS the system, specially in debug builds
     4        https://bugs.webkit.org/show_bug.cgi?id=125436
     5
     6        Reviewed by Martin Robinson.
     7
     8        * GNUmakefile.am: use -no-fast-install for WebKitWebProcess and WebKitPluginProcess so
     9        they do not need to be relinked the first time they are executed in-tree.
     10
    1112013-12-09  Zan Dobersek  <zdobersek@igalia.com>
    212
  • trunk/Source/WebKit2/GNUmakefile.am

    r160302 r160304  
    540540        $(LIBSOUP_LIBS)
    541541
     542Programs_WebKitWebProcess_LDFLAGS = \
     543        -no-fast-install
     544
    542545libWebCoreGtk2_la_SOURCES = \
    543546        $(webcoregtk_sources)
     
    756759        $(WINMM_LIBS) \
    757760        $(ZLIB_LIBS)
     761
     762Programs_WebKitPluginProcess_LDFLAGS = \
     763        -no-fast-install
    758764
    759765Programs_WebKitPluginProcess_CXXFLAGS = \
Note: See TracChangeset for help on using the changeset viewer.