Changeset 1594
- Timestamp:
- 06/17/09 22:35:41 (15 months ago)
- Files:
-
- 1 modified
-
trunk/BinariesCheck.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/BinariesCheck.py
r1593 r1594 220 220 if not stat.S_ISDIR(pkgfile.mode) and usr_lib_regex.search(fname): 221 221 has_usr_lib_file = True 222 if usr_lib_exception_regex.search(fname):222 if not binary_in_usr_lib and usr_lib_exception_regex.search(fname): 223 223 # Fake that we have binaries there to avoid 224 224 # only-non-binary-in-usr-lib false positives … … 252 252 253 253 # stripped ? 254 if not unstrippable.search(fname) and not is_ocaml_native:254 if not is_ocaml_native and not unstrippable.search(fname): 255 255 if not_stripped.search(pkgfile.magic): 256 256 printWarning(
