~ubuntu-branches/ubuntu/trusty/enigmail/trusty-security

« back to all changes in this revision

Viewing changes to config/expandlibs_gen.py

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2011-11-16 21:30:26 UTC
  • mfrom: (0.12.7)
  • Revision ID: package-import@ubuntu.com-20111116213026-7i0cpxql4kyjcdg4
Tags: 2:1.3.3-0ubuntu1
* New upstream release v1.3.3
* Add patch to define constants in nsIEnigmail.idl as unsigned long, so
  that the new IDL parser doesn't fall over
  - add debian/patches/new_idl_parser_compat.patch
  - update debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
def generate(args):
47
47
    desc = LibDescriptor()
48
48
    for arg in args:
49
 
        if os.path.splitext(arg)[1] == conf.OBJ_SUFFIX:
 
49
        if os.path.splitext(arg)[1] in [conf.OBJ_SUFFIX, '.i_o']:
50
50
            desc['OBJS'].append(os.path.abspath(arg))
51
51
        elif os.path.splitext(arg)[1] == conf.LIB_SUFFIX and \
52
52
             (os.path.exists(arg) or os.path.exists(arg + conf.LIBS_DESC_SUFFIX)):