Title: [113560] trunk/Source/WebCore
Revision
113560
Author
[email protected]
Date
2012-04-09 01:49:02 -0700 (Mon, 09 Apr 2012)

Log 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 <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (113559 => 113560)


--- trunk/Source/WebCore/ChangeLog	2012-04-09 07:55:12 UTC (rev 113559)
+++ trunk/Source/WebCore/ChangeLog	2012-04-09 08:49:02 UTC (rev 113560)
@@ -1,3 +1,21 @@
+2012-04-09  Zan Dobersek  <[email protected]>
+
+        [Gtk] Web Inspector noinst_DATA images are copied into innacurately named directory
+        https://bugs.webkit.org/show_bug.cgi?id=83423
+
+        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:
+
 2012-04-06  Pavel Feldman  <[email protected]>
 
         Web Inspector: move breakpoints active state from scripts panel to debugger presentation model.

Modified: trunk/Source/WebCore/GNUmakefile.am (113559 => 113560)


--- trunk/Source/WebCore/GNUmakefile.am	2012-04-09 07:55:12 UTC (rev 113559)
+++ trunk/Source/WebCore/GNUmakefile.am	2012-04-09 08:49:02 UTC (rev 113560)
@@ -1063,10 +1063,10 @@
 		$(WebCore)/English.lproj/localizedStrings.js
 	$(AM_V_GEN)
 	$(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/UglifyJS
-	$(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/images
+	$(AM_V_at)mkdir -p ${GENSOURCES_INSPECTOR}/Images
 	$(AM_V_at)cp ${dist_webinspector_DATA} ${GENSOURCES_INSPECTOR}
 	$(AM_V_at)cp ${dist_webinspectoruglifyjs_DATA} ${GENSOURCES_INSPECTOR}/UglifyJS
-	$(AM_V_at)cp ${dist_webinspectorimages_DATA} ${GENSOURCES_INSPECTOR}/images
+	$(AM_V_at)cp ${dist_webinspectorimages_DATA} ${GENSOURCES_INSPECTOR}/Images
 
 webresourcesdir = ${datadir}/webkitgtk-@WEBKITGTK_API_VERSION@/images
 dist_webresources_DATA = \
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to