VirtualBox

Changeset 45204 in vbox for trunk/src


Ignore:
Timestamp:
Mar 27, 2013 11:19:00 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
84562
Message:

Linux hosts: added support for Ubuntu 13.04

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/linux/distributions_deb

    r43225 r45204  
    55_Debian_etch     = DEBIAN_4_0
    66_Debian_sarge    = DEBIAN_3_1
     7_Ubuntu_raring   = UBUNTU_13_04
    78_Ubuntu_quantal  = UBUNTU_12_10
    89_Ubuntu_precise  = UBUNTU_12_04
  • trunk/src/libs/xpcom18a4/python/gen_python_deps.py

    r43105 r45204  
    2424        return None
    2525
    26     lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff)
     26    lib = os.path.join(p, "lib/i386-linux-gnu", dllpre+"python"+v+dllsuff)
     27    if not os.path.isfile(lib):
     28        lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff)
    2729
    2830    if bitness_magic == 1:
    2931        lib64 = os.path.join(p, "lib", "64", dllpre+"python"+v+dllsuff)
    3032    elif bitness_magic == 2:
    31         lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff)
    32         if not os.path.isfile(lib64):
    33             lib64 = lib
     33        lib64 = os.path.join(p, "lib/x86_64-linux-gnu", dllpre+"python"+v+dllsuff)
     34        if not os.path.isfile(lib64):
     35            lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff)
     36            if not os.path.isfile(lib64):
     37                lib64 = lib
    3438    else:
    3539        lib64 = None
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette