Title: [101235] trunk/Tools
Revision
101235
Author
[email protected]
Date
2011-11-28 01:51:04 -0800 (Mon, 28 Nov 2011)

Log Message

[Gtk][gtkdoc] Syntax error in Tools/gtk/generate-gtkdoc
https://bugs.webkit.org/show_bug.cgi?id=73165

Reviewed by Philippe Normand.

Fix some syntax errors in this script and remove an unused variable.

* gtk/generate-gtkdoc:
(get_webkit2_options.src_path):
(get_webkit2_options):
(get_webkit1_options.src_path):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (101234 => 101235)


--- trunk/Tools/ChangeLog	2011-11-28 09:46:07 UTC (rev 101234)
+++ trunk/Tools/ChangeLog	2011-11-28 09:51:04 UTC (rev 101235)
@@ -1,3 +1,17 @@
+2011-11-28  Martin Robinson  <[email protected]>
+
+        [Gtk][gtkdoc] Syntax error in Tools/gtk/generate-gtkdoc
+        https://bugs.webkit.org/show_bug.cgi?id=73165
+
+        Reviewed by Philippe Normand.
+
+        Fix some syntax errors in this script and remove an unused variable.
+
+        * gtk/generate-gtkdoc:
+        (get_webkit2_options.src_path): 
+        (get_webkit2_options):
+        (get_webkit1_options.src_path):
+
 2011-11-26  Kevin Ollivier  <[email protected]>
 
         [wx] Unreviewed build fix. Enable the inspector.

Modified: trunk/Tools/gtk/generate-gtkdoc (101234 => 101235)


--- trunk/Tools/gtk/generate-gtkdoc	2011-11-28 09:46:07 UTC (rev 101234)
+++ trunk/Tools/gtk/generate-gtkdoc	2011-11-28 09:51:04 UTC (rev 101235)
@@ -47,7 +47,6 @@
     def src_path(*args):
         return common.top_level_path(*(('Source', 'WebKit2', 'UIProcess', 'API', 'gtk') + args))
 
-    derived_sources = common.build_path('DerivedSources', 'WebKit2')
     options = get_common_options().copy()
     options.update({
         'module_name' : 'webkit2gtk',
@@ -66,12 +65,9 @@
     return (common.build_path('Source', 'WebKit2', 'webkit2gtk-3.0.pc'), options)
 
 def get_webkit1_options():
-    def derived_sources_path(*args):
-        return common.build_path(*(('DerivedSources', 'WebKit2') + args))
     def src_path(*args):
         return common.top_level_path(*(('Source', 'WebKit', 'gtk') + args))
 
-    derived_sources = common.build_path('DerivedSources', 'WebKit2')
     options = get_common_options().copy()
     options.update({
         'module_name' : 'webkitgtk',
@@ -94,7 +90,7 @@
 pkg_config_path = os.environ.get("PKG_CONFIG_PATH")
 os.environ['PKG_CONFIG_PATH'] = common.build_path('Source', '_javascript_Core')
 if pkg_config_path:
-    os.environ['PKG_CONFIG_PATH'] += + ':' + pkg_config_path
+    os.environ['PKG_CONFIG_PATH'] += ':' + pkg_config_path
 
 print "Generating WebKit1 documentation..."
 pkg_config_path, options = get_webkit1_options()
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to