From 3161c907a34d832634e80c18000b73206c8dd3d9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 7 Feb 2016 14:37:22 +0100 Subject: [PATCH] Add missing new line to upmake diagnostic message Just a tiny cosmetic fix. --- build/upmake | 2 +- build/upmake_script.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/upmake b/build/upmake index b199d6e231..d74de1d71e 100755 --- a/build/upmake +++ b/build/upmake @@ -1393,7 +1393,7 @@ my $vars = read_files_list($files); if (!$only_msvs) { if (call_upmake("$Bin/bakefiles/files.bkl", \&update_bakefile_0, $vars)) { - print qq{Don't forget to run "bakefile_gen -b wx.bkl".} if $verbose; + print qq{Don't forget to run "bakefile_gen -b wx.bkl".\n} if $verbose; } } diff --git a/build/upmake_script.pl b/build/upmake_script.pl index 8f06ac7dcb..5d09792207 100755 --- a/build/upmake_script.pl +++ b/build/upmake_script.pl @@ -53,7 +53,7 @@ my $vars = read_files_list($files); if (!$only_msvs) { if (call_upmake("$Bin/bakefiles/files.bkl", \&update_bakefile_0, $vars)) { - print qq{Don't forget to run "bakefile_gen -b wx.bkl".} if $verbose; + print qq{Don't forget to run "bakefile_gen -b wx.bkl".\n} if $verbose; } }