~mattmik/mixxx/mic_modifications

« back to all changes in this revision

Viewing changes to mixxx/build/osx/otool.py

  • Committer: Matt Mikolay
  • Date: 2012-10-22 14:10:21 UTC
  • mfrom: (3255.1.46 mixxx-trunk)
  • Revision ID: mikolaym@yahoo.com-20121022141021-9hxxx5o4amaqqw80
MergingĀ fromĀ lp:mixxx

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
SYSTEM_FRAMEWORKS = ["/System/Library/Frameworks"]
52
52
SYSTEM_LIBPATH = ["/usr/lib"] #anything else?
53
53
#paths to libs that we should copy in
54
 
LOCAL_FRAMEWORKS = [os.path.expanduser("~/Library/Frameworks"), "/Library/Frameworks", "/Network/Library/Frameworks"]
55
 
LOCAL_LIBPATH = ["/usr/local/lib", "/opt/local/lib", "/sw/local/lib"]
 
54
LOCAL_FRAMEWORKS = [
 
55
    os.path.expanduser("~/Library/Frameworks"), 
 
56
    "/Library/Frameworks", 
 
57
    "/Network/Library/Frameworks"
 
58
]
 
59
LOCAL_LIBPATH = filter(lambda x: 
 
60
    os.path.isdir(x), 
 
61
    ["/usr/local/lib", "/opt/local/lib", "/sw/local/lib"]
 
62
)
56
63
 
57
64
#however
58
65
FRAMEWORKS = LOCAL_FRAMEWORKS + SYSTEM_FRAMEWORKS