summaryrefslogtreecommitdiff
path: root/pygnulib/GLTestDir.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-09-09 01:04:08 +0200
committerBruno Haible <bruno@clisp.org>2017-09-09 16:28:59 +0200
commit6c81a58144966563f1ddf467c2071f44ba3c1232 (patch)
tree1aa920a1ad05200691e6a8f8208f698db1c5cbec /pygnulib/GLTestDir.py
parentcdd7bf2e246c76e7868b53f726fda6a3a47fbf57 (diff)
downloadgnulib-6c81a58144966563f1ddf467c2071f44ba3c1232.tar.gz
gnulib-tool.py: follow gnulib-tool changes, part 5
Follow gnulib-tool change 2013-05-04 Stefano Lattarini <stefano.lattarini@gmail.com> Assume gnulib is checked out from Git, not CVS
Diffstat (limited to 'pygnulib/GLTestDir.py')
-rw-r--r--pygnulib/GLTestDir.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 2937b5da4a..8e49a91f25 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -907,11 +907,7 @@ class GLMegaTestDir(object):
repdict['Oct'] = repdict['October'] = '10'
repdict['Nov'] = repdict['November'] = '11'
repdict['Dec'] = repdict['December'] = '12'
- if isfile(joinpath(DIRS['root'], 'CVS', 'Entries')):
- vc_witness = joinpath(DIRS['root'], 'CVS', 'Entries')
- else: # if not isfile(joinpath(DIRS['root'], 'CVS', 'Entries'))
- vc_witness = joinpath(
- DIRS['root'], '.git', 'refs', 'heads', 'master')
+ vc_witness = joinpath(DIRS['root'], '.git', 'refs', 'heads', 'master')
mdate_sh = joinpath(DIRS['root'], 'build-aux', 'mdate-sh')
args = ['sh', mdate_sh, vc_witness]
cvsdate = sp.check_output(args).decode("UTF-8").strip()