forked from pool/rpmlint
eaf5a8d432
Copy from Base:System/rpmlint based on submit request 20532 from user dirkmueller OBS-URL: https://build.opensuse.org/request/show/20532 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=46
24 lines
811 B
Diff
24 lines
811 B
Diff
Index: BinariesCheck.py
|
|
===================================================================
|
|
--- BinariesCheck.py.orig
|
|
+++ BinariesCheck.py
|
|
@@ -10,6 +10,7 @@
|
|
|
|
import re
|
|
import stat
|
|
+import os
|
|
|
|
import rpm
|
|
|
|
@@ -265,7 +266,9 @@ class BinariesCheck(AbstractCheck.Abstra
|
|
|
|
# stripped ?
|
|
if not is_ocaml_native and not unstrippable.search(fname):
|
|
- if not_stripped.search(pkgfile.magic):
|
|
+ if not_stripped.search(pkgfile.magic) and \
|
|
+ (os.environ.get('BUILD_IS_RUNNING', None) == None or \
|
|
+ os.environ.get('BUILD_DEBUG_FLAGS','').find('-g') != -1):
|
|
printWarning(
|
|
pkg, 'unstripped-binary-or-object', fname)
|
|
|