Changeset 151492 in webkit


Ignore:
Timestamp:
Jun 12, 2013 1:51:48 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Remove the WebCoreLayer(Gtk2).a archives before regenerating them
https://bugs.webkit.org/show_bug.cgi?id=116723

Reviewed by Carlos Garcia Campos.

Source/WebKit2:

  • GNUmakefile.am: When generating the WebCoreLayerGtk2.a archive from all the dependency archives, remove the

current archive (if any). Updating an existent archive in an incremental build is not bulletproof and can lead
to corrupt archives and subsequent build failures. On the other hand, the archive generation is not expensive
and produces a working archive without problems even on incremental builds.

Tools:

  • TestWebKitAPI/GNUmakefile.am: When generating the WebCoreLayer.a archive from all the dependency archives,

remove the current archive (if any). Updating an existent archive in an incremental build is not bulletproof
and can lead to corrupt archives and subsequent build failures. On the other hand, the archive generation is
not expensive and produces a working archive without problems even on incremental builds.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r151490 r151492  
     12013-06-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Remove the WebCoreLayer(Gtk2).a archives before regenerating them
     4        https://bugs.webkit.org/show_bug.cgi?id=116723
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * GNUmakefile.am: When generating the WebCoreLayerGtk2.a archive from all the dependency archives, remove the
     9        current archive (if any). Updating an existent archive in an incremental build is not bulletproof and can lead
     10        to corrupt archives and subsequent build failures. On the other hand, the archive generation is not expensive
     11        and produces a working archive without problems even on incremental builds.
     12
    1132013-06-12  Zan Dobersek  <zdobersek@igalia.com>
    214
  • trunk/Source/WebKit2/GNUmakefile.am

    r150884 r151492  
    586586WebCoreLayerGtk2.a: $(webcore_layer_gtk2_deps)
    587587        $(AM_V_GEN)
     588        $(AM_V_at)$(shell rm -f $@)
    588589        $(AM_V_at)$(foreach archive, $(webcore_layer_gtk2_archives), $(shell ar t $(archive) | xargs -n50 ar cruT $@))
    589590
  • trunk/Tools/ChangeLog

    r151483 r151492  
     12013-06-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Remove the WebCoreLayer(Gtk2).a archives before regenerating them
     4        https://bugs.webkit.org/show_bug.cgi?id=116723
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * TestWebKitAPI/GNUmakefile.am: When generating the WebCoreLayer.a archive from all the dependency archives,
     9        remove the current archive (if any). Updating an existent archive in an incremental build is not bulletproof
     10        and can lead to corrupt archives and subsequent build failures. On the other hand, the archive generation is
     11        not expensive and produces a working archive without problems even on incremental builds.
     12
    1132013-06-11  Santosh Mahto  <santosh.ma@samsung.com>
    214
  • trunk/Tools/TestWebKitAPI/GNUmakefile.am

    r151012 r151492  
    122122WebCoreLayer.a: $(webcore_layer_deps)
    123123        $(AM_V_GEN)
     124        $(AM_V_at)$(shell rm -f $@)
    124125        $(AM_V_at)$(foreach archive, $(webcore_layer_archives), $(shell ar t $(archive) | xargs -n50 ar cruT $@))
    125126
Note: See TracChangeset for help on using the changeset viewer.