From d7fbf1f820778710277fa419dd76e2fa291ee4e3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 7 Jan 2018 18:43:01 +0100 Subject: [PATCH] Output the message about bakefile_gen by default in upmake This message shouldn't be given only when --verbose is given, it's useful as a reminder and you shouldn't have to remember to give a special option to get this reminder. --- build/upmake | 2 +- build/upmake_script.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/upmake b/build/upmake index e6dffcd114..c02001348d 100755 --- a/build/upmake +++ b/build/upmake @@ -1257,7 +1257,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".\n} if $verbose; + print qq{Don't forget to run "bakefile_gen -b wx.bkl".\n}; } } diff --git a/build/upmake_script.pl b/build/upmake_script.pl index 75939c8407..a0855b04e6 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".\n} if $verbose; + print qq{Don't forget to run "bakefile_gen -b wx.bkl".\n}; } }