aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/yelphelper.py
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-04-18 13:47:35 +1000
committerJussi Pakkanen <jpakkane@gmail.com>2017-04-19 16:11:37 +0300
commit6a4efe8a82fbbaf49786c44886ccba2855c8fef2 (patch)
treef33b9f04aeec99aeb405b422672855d5bb15caf3 /mesonbuild/scripts/yelphelper.py
parent0e47e74a77447575cbabd71315481c6dd9632601 (diff)
downloadmeson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.zip
meson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.tar.gz
meson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.tar.bz2
Drop terminating fullstop from "Installing blah to blah" messages
Grammatically, this full stop isn't needed and with file names it has a potential to be confusing: Installing /foo/bar/filename.1 to /foo/bar/dirname. The full stop caused me to do a double-take more than once, so let's drop it.
Diffstat (limited to 'mesonbuild/scripts/yelphelper.py')
-rw-r--r--mesonbuild/scripts/yelphelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/scripts/yelphelper.py b/mesonbuild/scripts/yelphelper.py
index 85d89b8..47dfb71 100644
--- a/mesonbuild/scripts/yelphelper.py
+++ b/mesonbuild/scripts/yelphelper.py
@@ -65,7 +65,7 @@ def install_help(srcdir, blddir, sources, media, langs, install_dir, destdir, pr
for source in sources:
infile = os.path.join(srcdir if lang == 'C' else blddir, lang, source)
outfile = os.path.join(indir, source)
- mlog.log('Installing %s to %s.' % (infile, outfile))
+ mlog.log('Installing %s to %s' % (infile, outfile))
shutil.copyfile(infile, outfile)
shutil.copystat(infile, outfile)
for m in media:
@@ -81,7 +81,7 @@ def install_help(srcdir, blddir, sources, media, langs, install_dir, destdir, pr
os.makedirs(os.path.dirname(outfile), exist_ok=True)
os.symlink(srcfile, outfile)
continue
- mlog.log('Installing %s to %s.' % (infile, outfile))
+ mlog.log('Installing %s to %s' % (infile, outfile))
if '/' in m or '\\' in m:
os.makedirs(os.path.dirname(outfile), exist_ok=True)
shutil.copyfile(infile, outfile)