From: Dmitry Selyutin Date: Mon, 2 Jul 2018 17:19:42 +0000 (+0300) Subject: generator: fix missing path separator X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69437cd888ead1a40c7fecb298374b1ca337c42e;p=thirdparty%2Fgnulib.git generator: fix missing path separator --- diff --git a/pygnulib/generator.py b/pygnulib/generator.py index 3cbb13a6dc..cf46bdf607 100644 --- a/pygnulib/generator.py +++ b/pygnulib/generator.py @@ -685,6 +685,7 @@ def lib_makefile(path, config, explicit, database, mkedits, testing, autoconf, * 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 @@ def tests_makefile(path, config, explicit, modules, mkedits, testing, libtests): 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."