Title: [145912] trunk
Revision
145912
Author
[email protected]
Date
2013-03-15 10:11:23 -0700 (Fri, 15 Mar 2013)

Log Message

[GTK] acceleration_backend_description does not concatenate "(gles2"
https://bugs.webkit.org/show_bug.cgi?id=112405

Patch by Jae Hyun Park <[email protected]> on 2013-03-15
Reviewed by Martin Robinson.

In FindDependencies.m4, acceleration_backend_description string does not
concatenate if there is a space between the operator and the operand.

* Source/autotools/FindDependencies.m4:

Modified Paths

Diff

Modified: trunk/ChangeLog (145911 => 145912)


--- trunk/ChangeLog	2013-03-15 17:07:34 UTC (rev 145911)
+++ trunk/ChangeLog	2013-03-15 17:11:23 UTC (rev 145912)
@@ -1,3 +1,15 @@
+2013-03-15  Jae Hyun Park  <[email protected]>
+
+        [GTK] acceleration_backend_description does not concatenate "(gles2"
+        https://bugs.webkit.org/show_bug.cgi?id=112405
+
+        Reviewed by Martin Robinson.
+
+        In FindDependencies.m4, acceleration_backend_description string does not
+        concatenate if there is a space between the operator and the operand.
+
+        * Source/autotools/FindDependencies.m4:
+
 2013-03-15  Allan Sandfeld Jensen  <[email protected]>
 
         [Qt] Build error with building with Qt 5.1

Modified: trunk/Source/autotools/FindDependencies.m4 (145911 => 145912)


--- trunk/Source/autotools/FindDependencies.m4	2013-03-15 17:07:34 UTC (rev 145911)
+++ trunk/Source/autotools/FindDependencies.m4	2013-03-15 17:11:23 UTC (rev 145912)
@@ -438,7 +438,7 @@
 
 if test "$with_acceleration_backend" = "opengl"; then
     if test "$enable_gles2" = "yes"; then
-        acceleration_backend_description+= "(gles2"
+        acceleration_backend_description+="(gles2"
         OPENGL_LIBS="-lGLESv2"
     else
         acceleration_backend_description+="(gl"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to