Description: move the timing scripts to a saner location
Author: J.Puydt
Forwarded: not-needed

--- coq.orig/tools/CoqMakefile.in
+++ coq/tools/CoqMakefile.in
@@ -106,9 +106,9 @@
 OCAMLLIBDEP ?= "$(COQBIN)ocamllibdep"
 
 # Timing scripts
-COQMAKE_ONE_TIME_FILE ?= "$(COQCORELIB)/tools/make-one-time-file.py"
-COQMAKE_BOTH_TIME_FILES ?= "$(COQCORELIB)/tools/make-both-time-files.py"
-COQMAKE_BOTH_SINGLE_TIMING_FILES ?= "$(COQCORELIB)/tools/make-both-single-timing-files.py"
+COQMAKE_ONE_TIME_FILE ?= "/usr/libexec/coq/make-one-time-file.py"
+COQMAKE_BOTH_TIME_FILES ?= "/usr/libexec/coq/make-both-time-files.py"
+COQMAKE_BOTH_SINGLE_TIMING_FILES ?= "/usr/libexec/coq/make-both-single-timing-files.py"
 BEFORE ?=
 AFTER ?=
 
--- coq.orig/tools/make-both-single-timing-files.py
+++ coq/tools/make-both-single-timing-files.py
@@ -1,4 +1,6 @@
 #!/usr/bin/python3
+import sys
+sys.path.insert(1, '/usr/libexec/coq')
 from TimeFileMaker import *
 
 if __name__ == '__main__':
--- coq.orig/tools/make-both-time-files.py
+++ coq/tools/make-both-time-files.py
@@ -1,4 +1,6 @@
 #!/usr/bin/python3
+import sys
+sys.path.insert(1, '/usr/libexec/coq')
 from TimeFileMaker import *
 
 if __name__ == '__main__':
--- coq.orig/tools/make-one-time-file.py
+++ coq/tools/make-one-time-file.py
@@ -1,5 +1,6 @@
 #!/usr/bin/python3
 import sys
+sys.path.insert(1, '/usr/libexec/coq')
 from TimeFileMaker import *
 
 if __name__ == '__main__':
