This is a multiarch issue:

def add_library(name, optional=False):
    """
    This looks for a library named name in the <i> and <i>/lib, for all
    <i> in install. When found, it adds it to library_dirs.
    """
    
    if android:
        return False

    checked = [ ]

    for i in install:
        for d in ('', 'lib'):
            for suffix in (".so", ".dylib", ".a"):

                dir = os.path.join(i, d)
                fn = os.path.join(dir, name + suffix)
                checked.append(fn)

                if os.path.exists(fn):
                    print "Found %s." % fn

                    if dir not in library_dirs:
                        library_dirs.append(dir)
                    return True

    if optional:
        return False

    print "Couldn't find library %s." % name
    print "The paths searched were:"
    for i in checked:
        print "-", i
    sys.exit(-1)


** Bug watch added: Debian Bug tracker #633672
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633672

** Also affects: renpy (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=633672
   Importance: Unknown
       Status: Unknown

** Changed in: renpy (Ubuntu Oneiric)
       Status: Confirmed => Triaged

** Tags added: multiarch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/755957

Title:
  renpy version 6.10.2.dfsg1-1build2 failed to build on i386

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/renpy/+bug/755957/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to