aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-10-25 12:31:10 -0400
committerMike Frysinger <vapier@gentoo.org>2014-11-03 01:08:39 -0500
commit5ab57779692f83691cf1ab2c3bf7666f3e33790a (patch)
tree11a0b449bcc6d56e215bcaaff67fc17eb6e8421e /examples
parentlint: more print() fixes (diff)
downloadpkgcore-5ab57779692f83691cf1ab2c3bf7666f3e33790a.tar.gz
pkgcore-5ab57779692f83691cf1ab2c3bf7666f3e33790a.tar.bz2
pkgcore-5ab57779692f83691cf1ab2c3bf7666f3e33790a.zip
examples: use stable debug path
The debug path is always /usr/lib/debug, so don't check random ABI dirs.
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/identify-installed-non-split-debug-pkgs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/identify-installed-non-split-debug-pkgs.py b/examples/identify-installed-non-split-debug-pkgs.py
index 74758a35..7277d982 100755
--- a/examples/identify-installed-non-split-debug-pkgs.py
+++ b/examples/identify-installed-non-split-debug-pkgs.py
@@ -3,7 +3,7 @@ from pkgcore.config import load_config
from pkgcore.util.file_type import file_identifier
import re
-debug_paths = ["/usr/lib%s/debug" % (x,) for x in ("64", "32", "")]
+debug_paths = ["/usr/lib/debug"]
fi = file_identifier()
vdbs = load_config().get_default("domain").vdb