From: Bruno Haible Date: Sat, 20 Apr 2024 19:55:45 +0000 (+0200) Subject: gnulib-tool.py: Fix output of --create-megatestdir. X-Git-Tag: v1.0~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a114a97b2e9efc8413a2a820409376a50dc56ff7;p=thirdparty%2Fgnulib.git gnulib-tool.py: Fix output of --create-megatestdir. * pygnulib/GLTestDir.py (GLMegaTestDir.execute): Remove stray backslash from output. --- diff --git a/ChangeLog b/ChangeLog index 1af6861244..b555d7a503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-04-20 Bruno Haible + + gnulib-tool.py: Fix output of --create-megatestdir. + * pygnulib/GLTestDir.py (GLMegaTestDir.execute): Remove stray backslash + from output. + 2024-04-19 Bruno Haible wcsstr: Update doc. diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py index 38427e402e..6f74453f29 100644 --- a/pygnulib/GLTestDir.py +++ b/pygnulib/GLTestDir.py @@ -973,7 +973,7 @@ class GLMegaTestDir: emit += 'for module in %s; do\n' % ' '.join(megasubdirs) emit += ' echo "Working on module $module..."\n' emit += ' safemodule=`echo $module | sed -e \'s|/|-|g\'`\n' - emit += ' (echo "To: gnulib@autobuild.josefsson.org"\\\n' + emit += ' (echo "To: gnulib@autobuild.josefsson.org"\n' emit += ' echo\n' emit += ' set -x\n' emit += ' : autobuild project... $module\n'