summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-09-23 19:25:02 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-23 19:25:02 -0700
commit1a189611ef19a624f3d180d184faa5fcef17e7bf (patch)
tree9b8b3356dc5c2f10c314cfc1a5ab0c86e91da1ab
parent7fb9758506341ffc05585fbd18f2be58ef0e16c2 (diff)
downloadportage-1a189611ef19a624f3d180d184faa5fcef17e7bf.tar.gz
portage-1a189611ef19a624f3d180d184faa5fcef17e7bf.tar.bz2
portage-1a189611ef19a624f3d180d184faa5fcef17e7bf.zip
env_update: scan all dirs starting with "lib"
Also see bug #435834 and commit 7fb9758506341ffc05585fbd18f2be58ef0e16c2.
-rw-r--r--pym/portage/util/env_update.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update.py
index ace4077f7..ac18ad269 100644
--- a/pym/portage/util/env_update.py
+++ b/pym/portage/util/env_update.py
@@ -1,16 +1,17 @@
-# Copyright 2010-2011 Gentoo Foundation
+# Copyright 2010-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
__all__ = ['env_update']
import errno
+import glob
import io
import stat
import sys
import time
import portage
-from portage import os, _encodings, _unicode_encode
+from portage import os, _encodings, _unicode_decode, _unicode_encode
from portage.checksum import prelink_capable
from portage.data import ostype
from portage.exception import ParseError
@@ -88,6 +89,7 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
eprefix = settings.get("EPREFIX", "")
eprefix_lstrip = eprefix.lstrip(os.sep)
+ eroot = normalize_path(os.path.join(target_root, eprefix_lstrip)).rstrip(os.sep) + os.sep
envd_dir = os.path.join(target_root, eprefix_lstrip, "etc", "env.d")
ensure_dirs(envd_dir, mode=0o755)
fns = listdir(envd_dir, EmptyOnError=1)
@@ -229,9 +231,22 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
current_time = long(time.time())
mtime_changed = False
+
+ potential_lib_dirs = []
+ for lib_dir_glob in ['usr/lib*', 'lib*']:
+ x = os.path.join(target_root, eprefix_lstrip, lib_dir_glob)
+ for y in glob.glob(_unicode_encode(x,
+ encoding=_encodings['fs'], errors='strict')):
+ try:
+ y = _unicode_decode(y,
+ encoding=_encodings['fs'], errors='strict')
+ except UnicodeDecodeError:
+ continue
+ if os.path.basename(y) != "libexec":
+ potential_lib_dirs.append(y[len(eroot):])
+
lib_dirs = set()
- for lib_dir in set(specials["LDPATH"] + \
- ['usr/lib','usr/lib64','usr/lib32','lib','lib64','lib32']):
+ for lib_dir in set(specials["LDPATH"] + potential_lib_dirs):
x = os.path.join(target_root, eprefix_lstrip, lib_dir.lstrip(os.sep))
try:
newldpathtime = os.stat(x)[stat.ST_MTIME]