Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 775839 | Differences between
and this patch

Collapse All | Expand All

(-)a/Lib/ctypes/macholib/dyld.py (-1 / +4 lines)
Lines 20-25 __all__ = [ Link Here
20
# These are the defaults as per man dyld(1)
20
# These are the defaults as per man dyld(1)
21
#
21
#
22
DEFAULT_FRAMEWORK_FALLBACK = [
22
DEFAULT_FRAMEWORK_FALLBACK = [
23
    "@GENTOO_PORTAGE_EPREFIX@/MacOSX.sdk/System/Library/Frameworks",
23
    os.path.expanduser("~/Library/Frameworks"),
24
    os.path.expanduser("~/Library/Frameworks"),
24
    "/Library/Frameworks",
25
    "/Library/Frameworks",
25
    "/Network/Library/Frameworks",
26
    "/Network/Library/Frameworks",
Lines 27-32 DEFAULT_FRAMEWORK_FALLBACK = [ Link Here
27
]
28
]
28
DEFAULT_LIBRARY_FALLBACK = [
29
DEFAULT_LIBRARY_FALLBACK = [
30
    "@GENTOO_PORTAGE_EPREFIX@/lib",
31
    "@GENTOO_PORTAGE_EPREFIX@/usr/lib",
32
    "@GENTOO_PORTAGE_EPREFIX@/usr/local/lib",
29
    os.path.expanduser("~/lib"),
33
    os.path.expanduser("~/lib"),
30
    "/usr/local/lib",
34
    "/usr/local/lib",
31
    "/lib",
35
    "/lib",
32
-

Return to bug 775839