Changeset 178103 in webkit


Ignore:
Timestamp:
Jan 7, 2015 10:00:52 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Build gtk-doc without gtkdoc-mktmpl
https://bugs.webkit.org/show_bug.cgi?id=140225

Patch by Michael Catanzaro <Michael Catanzaro> on 2015-01-07
Reviewed by Darin Adler.

Stop calling gtkdoc-mktmpl. It's being removed upstream, and since we
don't modify the tmpl files that it generates, it's not doing anything
for us.

  • gtk/gtkdoc.py:

(GTKDoc.generate):
(GTKDoc._run_gtkdoc_scangobj):
(GTKDoc._run_gtkdoc_mktmpl): Deleted.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r178095 r178103  
     12015-01-07  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [GTK] Build gtk-doc without gtkdoc-mktmpl
     4        https://bugs.webkit.org/show_bug.cgi?id=140225
     5
     6        Reviewed by Darin Adler.
     7
     8        Stop calling gtkdoc-mktmpl. It's being removed upstream, and since we
     9        don't modify the tmpl files that it generates, it's not doing anything
     10        for us.
     11
     12        * gtk/gtkdoc.py:
     13        (GTKDoc.generate):
     14        (GTKDoc._run_gtkdoc_scangobj):
     15        (GTKDoc._run_gtkdoc_mktmpl): Deleted.
     16
    1172015-01-07  Gwang Yoon Hwang  <yoon@igalia.com>
    218
  • trunk/Tools/gtk/gtkdoc.py

    r176198 r178103  
    142142        self._run_gtkdoc_scan()
    143143        self._run_gtkdoc_scangobj()
    144         self._run_gtkdoc_mktmpl()
    145144        self._run_gtkdoc_mkdb()
    146145
     
    339338                          env=env, cwd=self.output_dir)
    340339
    341     def _run_gtkdoc_mktmpl(self):
    342         args = ['gtkdoc-mktmpl', '--module=%s' % self.module_name]
    343         self._run_command(args, cwd=self.output_dir)
    344 
    345340    def _run_gtkdoc_mkdb(self):
    346341        sgml_file = os.path.join(self.output_dir, self.main_sgml_file)
Note: See TracChangeset for help on using the changeset viewer.