Changeset 113560 in webkit


Ignore:
Timestamp:
Apr 9, 2012 1:49:02 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Gtk] Web Inspector noinst_DATA images are copied into innacurately named directory
https://bugs.webkit.org/show_bug.cgi?id=83423

Patch by Zan Dobersek <zandobersek@gmail.com> on 2012-04-09
Reviewed by Martin Robinson.

Copy Web Inspector images that are a part of the data not meant
for installation into a directory named 'Images' rather than
a lower-case version of that. This is required as until now,
when using these inspector resources (for example during layout
tests or manually pointing WEBKIT_INSPECTOR_PATH env to that
location), the images were not displayed as they were not loadable.

No new tests - no new functionality.

  • GNUmakefile.am:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r113558 r113560  
     12012-04-09  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        [Gtk] Web Inspector noinst_DATA images are copied into innacurately named directory
     4        https://bugs.webkit.org/show_bug.cgi?id=83423
     5
     6        Reviewed by Martin Robinson.
     7
     8        Copy Web Inspector images that are a part of the data not meant
     9        for installation into a directory named 'Images' rather than
     10        a lower-case version of that. This is required as until now,
     11        when using these inspector resources (for example during layout
     12        tests or manually pointing WEBKIT_INSPECTOR_PATH env to that
     13        location), the images were not displayed as they were not loadable.
     14
     15        No new tests - no new functionality.
     16
     17        * GNUmakefile.am:
     18
    1192012-04-06  Pavel Feldman  <pfeldman@chromium.org>
    220
  • trunk/Source/WebCore/GNUmakefile.am

    r113462 r113560  
    10641064        $(AM_V_GEN)
    10651065        $(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/UglifyJS
    1066         $(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/images
     1066        $(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/Images
    10671067        $(AM_V_at)cp ${dist_webinspector_DATA} ${GENSOURCES_INSPECTOR}
    10681068        $(AM_V_at)cp ${dist_webinspectoruglifyjs_DATA} ${GENSOURCES_INSPECTOR}/UglifyJS
    1069         $(AM_V_at)cp ${dist_webinspectorimages_DATA} ${GENSOURCES_INSPECTOR}/images
     1069        $(AM_V_at)cp ${dist_webinspectorimages_DATA} ${GENSOURCES_INSPECTOR}/Images
    10701070
    10711071webresourcesdir = ${datadir}/webkitgtk-@WEBKITGTK_API_VERSION@/images
Note: See TracChangeset for help on using the changeset viewer.