From 977af731ca5f76799cdb7aa14e4f071c38f34999 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 9 Jan 2010 01:22:29 +0000 Subject: * Updated automake/autoconf * Detects Python 2.6 * Various compilation fixes git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1071924 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- dcoppython/lib/Makefile.am | 2 +- dcoppython/shell/gen_marshal_code.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'dcoppython') diff --git a/dcoppython/lib/Makefile.am b/dcoppython/lib/Makefile.am index 99dbac94..c72a0662 100644 --- a/dcoppython/lib/Makefile.am +++ b/dcoppython/lib/Makefile.am @@ -1,4 +1,4 @@ pyt_DATA = pydcop.py -pytdir = $(PYTHONMODDIR) +pytdir = $(PYTHONMODDIR)/site-packages diff --git a/dcoppython/shell/gen_marshal_code.py b/dcoppython/shell/gen_marshal_code.py index 73cb1fd0..c24c8760 100644 --- a/dcoppython/shell/gen_marshal_code.py +++ b/dcoppython/shell/gen_marshal_code.py @@ -119,21 +119,21 @@ class DocType: def __init__(self, type): self.type = type - self.demarshal_as = None - self.as = [] + self.demarshal_asme = None + self.asme = [] self.info = [] - def add_as(self, as): - if self.demarshal_as == None: self.demarshal_as = as - self.as += [as] + def add_asme(self, asme): + if self.demarshal_asme == None: self.demarshal_asme = asme + self.asme += [asme] def add_info(self,info): self.info += [info] def xml(self): return ['' % self.type, - ' %s' % self.demarshal_as] + \ - [' %s' % as for as in self.as ] + \ + ' %s' % self.demarshal_asme] + \ + [' %s' % asme for asme in self.asme ] + \ [' %s' % info for info in self.info ] + \ [''] @@ -186,7 +186,7 @@ for l in in_file.readlines(): if m: doc_cmd, rest = m.groups() if doc_cmd=="as": - doc_types[current_type].add_as(rest) + doc_types[current_type].add_asme(rest) if doc_cmd=="info": doc_types[current_type].add_info(rest) continue -- cgit v1.2.1