summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-04-01 10:15:57 -0700
committerZac Medico <zmedico@gentoo.org>2012-04-01 10:15:57 -0700
commit5aec6753e2a0cfd7992c41ceaadf2c42fce715ac (patch)
tree2bbae266a0f59e9b20523de6d34e9811c8675d37
parent87a330b69d7c617e0a14f3aaa028e697b67a7fff (diff)
downloadportage-5aec6753e2a0cfd7992c41ceaadf2c42fce715ac.tar.gz
portage-5aec6753e2a0cfd7992c41ceaadf2c42fce715ac.tar.bz2
portage-5aec6753e2a0cfd7992c41ceaadf2c42fce715ac.zip
repoman: only assume cvs preserves mtimes
-rwxr-xr-xbin/repoman2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 419790050..076d4042f 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -547,7 +547,7 @@ if options.if_modified == "y" and vcs is None:
options.if_modified = "n"
# Disable copyright/mtime check if vcs does not preserve mtime (bug #324075).
-vcs_preserves_mtime = vcs not in ('git', 'svn')
+vcs_preserves_mtime = vcs in ('cvs',)
vcs_local_opts = repoman_settings.get("REPOMAN_VCS_LOCAL_OPTS", "").split()
vcs_global_opts = repoman_settings.get("REPOMAN_VCS_GLOBAL_OPTS")