changeset 39121:ab1d0693df3a

generator: fix missing path separator
author Dmitry Selyutin <ghostmansd@gmail.com>
date Mon, 02 Jul 2018 20:19:42 +0300
parents 09fc36d5e5b2
children 57b977b235aa
files pygnulib/generator.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib/generator.py	Mon Jul 02 01:09:52 2018 +0300
+++ b/pygnulib/generator.py	Mon Jul 02 20:19:42 2018 +0300
@@ -685,6 +685,7 @@
     for line in lines:
         src = "$(top_srcdir)/build-aux/"
         dst = _os.path.join("$(top_srcdir)", config.auxdir)
+        dst += _os.path.sep
         yield line.replace(src, dst)
     yield ""
     yield "mostlyclean-local: mostlyclean-generic"
@@ -874,6 +875,7 @@
     for line in lines:
         src = "$(top_srcdir)/build-aux/"
         dst = _os.path.join("$(top_srcdir)", config.auxdir)
+        dst += _os.path.sep
         yield line.replace(src, dst)
     yield ""
     yield "# Clean up after Solaris cc."