From: Zac Medico Date: Sun, 1 Apr 2012 17:15:57 +0000 (-0700) Subject: repoman: only assume cvs preserves mtimes X-Git-Tag: v2.2.0_alpha99~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5aec6753e2a0cfd7992c41ceaadf2c42fce715ac;p=portage.git repoman: only assume cvs preserves mtimes --- 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")