summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2013-07-14 18:59:14 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-07-14 18:59:41 +0200
commit512113a8c65e18c2e11dca74fd47b8a1a811befe (patch)
treec3bbab46f824b578ac4f4939ccca593d05e0477a
parentd73bb720cdaa51e1a95fa4cc1011df196e4821a2 (diff)
gtk-doc-lite: Also copy gtk-doc.notmpl.make
It's required for glib for example.
-rw-r--r--recipes/gtk-doc-lite.recipe5
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes/gtk-doc-lite.recipe b/recipes/gtk-doc-lite.recipe
index b2c9980..2964107 100644
--- a/recipes/gtk-doc-lite.recipe
+++ b/recipes/gtk-doc-lite.recipe
@@ -8,7 +8,8 @@ class Recipe(recipe.Recipe):
btype = BuildType.CUSTOM
files_devel = ['bin/gtkdocize', 'share/aclocal/gtk-doc.m4',
- 'share/gtk-doc/data/gtk-doc.make']
+ 'share/gtk-doc/data/gtk-doc.make',
+ 'share/gtk-doc/data/gtk-doc.notmpl.make']
def prepare(self):
self.remotes['origin'] = '%s/%s.git' % \
@@ -28,6 +29,8 @@ class Recipe(recipe.Recipe):
os.path.join(aclocal_dir, 'gtk-doc.m4'))
shutil.copy(os.path.join(self.build_dir, 'gtk-doc.make'),
os.path.join(data_dir, 'gtk-doc.make'))
+ shutil.copy(os.path.join(self.build_dir, 'gtk-doc.notmpl.make'),
+ os.path.join(data_dir, 'gtk-doc.notmpl.make'))
gtkdocize = os.path.join(self.config.prefix, 'bin', 'gtkdocize')
shutil.copy(os.path.join(self.build_dir, 'gtkdocize.in'), gtkdocize)
replacements = {'@PACKAGE@': 'gtk-doc', '@VERSION@': self.version,