summaryrefslogtreecommitdiffstats
path: root/cnf
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2012-05-04 23:47:27 -0700
committerZac Medico <zmedico@gentoo.org>2012-05-04 23:47:27 -0700
commit33545ea18e8816addb3c54bb26a0cc788b8512e6 (patch)
treed0cc3616908e23a43884af9b3f1d5a812b42d67a /cnf
parente9ba65f66dbc59b89d6133b8a909f58fa41bf760 (diff)
downloadportage-33545ea18e8816addb3c54bb26a0cc788b8512e6.tar.gz
portage-33545ea18e8816addb3c54bb26a0cc788b8512e6.tar.bz2
portage-33545ea18e8816addb3c54bb26a0cc788b8512e6.zip
Support COLLISION_IGNORE_UNOWNED="*.pyc *.pyo"
This will fix bug #410691.
Diffstat (limited to 'cnf')
-rw-r--r--cnf/make.globals5
1 files changed, 5 insertions, 0 deletions
diff --git a/cnf/make.globals b/cnf/make.globals
index 0f6f54165..5f536c33a 100644
--- a/cnf/make.globals
+++ b/cnf/make.globals
@@ -61,6 +61,11 @@ FEATURES="assume-digests binpkg-logs distlocks ebuild-locks
# FEATURES=protect-owned to operate smoothly in all cases.
COLLISION_IGNORE="/lib/modules"
+# Ignore file collisions for unowned *.pyo and *.pyc files, this helps during
+# transition from compiling python modules in live file system to compiling
+# them in src_install() function.
+COLLISION_IGNORE_UNOWNED="*.pyc *.pyo"
+
# Enable preserve-libs for testing with portage versions that support it.
# This setting is commented out for portage versions that don't support it.
FEATURES="${FEATURES} preserve-libs"