diff options
| author | Marius Kintel <marius@kintel.net> | 2013-02-06 19:32:59 (GMT) | 
|---|---|---|
| committer | Marius Kintel <marius@kintel.net> | 2013-02-06 19:32:59 (GMT) | 
| commit | f7fd58de8aea0e2336e0c1216452254462203dde (patch) | |
| tree | 6d268e791ed39943df53add27d19e49887be301b | |
| parent | 3c19224eb6bc29ae6f1dc6637b7238f538230f12 (diff) | |
Fail on external non-system dependency
| -rwxr-xr-x | scripts/macosx-sanity-check.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/scripts/macosx-sanity-check.py b/scripts/macosx-sanity-check.py index 3938d74..22c2af0 100755 --- a/scripts/macosx-sanity-check.py +++ b/scripts/macosx-sanity-check.py @@ -107,6 +107,9 @@ if __name__ == '__main__':          deps = find_dependencies(dep)          assert(deps)          for d in deps: +            if not re.match(executable_path, d): +                print "Error: External dependency " + d +                sys.exit(1)              absfile = lookup_library(d)              if absfile == None:                  print "Not found: " + d | 
