Changeset 617
- Timestamp:
- 01/25/09 01:18:21 (4 years ago)
- Files:
-
- gtkimageview/gtkdoc.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gtkimageview/gtkdoc.py
r616 r617 251 251 dstdir) 252 252 253 def install(self): 254 parent = self.inputs[0].parent 255 parent_abs = parent.abspath(self.env) 256 htmldir = os.path.join(parent_abs, 'html') 257 dstdir = '${DATADIR}/gtk-doc/html/%s' % self.libname 258 install_files = [os.path.join(htmldir, f) for f in os.listdir(htmldir)] 259 self.generator.bld.install_files(dstdir, install_files) 260 253 261 class gtkdoc_fixxref_task(GTKDocBaseTask): 254 262 after = 'gtkdoc_mkhtml_task' … … 260 268 rundir = self.inputs[0].parent.abspath(self.env) 261 269 return run_proc(fmt, rundir) 262 270 263 271 @TaskGen.feature('gtkdoc') 264 272 def process_gtkdoc(self):
