From 6e40b2525e504ecece721b84559b9e42e4f0432a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 31 Jul 2021 19:11:35 +0100 Subject: [PATCH] Stop updating non-existent MSVC 7 project files MSVC 7 project files don't exist any longer, so don't try updating them in upmake. This should have been done in 8b854d2f92 (Remove MSVC 7 project files and support for generating them, 2021-04-26). --- build/upmake | 4 ++-- build/upmake_script.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/upmake b/build/upmake index de8d1c80b4..8008c3325b 100755 --- a/build/upmake +++ b/build/upmake @@ -1392,7 +1392,7 @@ of files in build/files. If --no-xxx option is specified, the corresponding outputs are not updated. By default everything is. -The version argument of --only-version can be 7, 8, 9 or 10 with the latter +The version argument of --only-version can be 8, 9 or 10 with the latter selecting the MSBuild projects. EOF ; @@ -1448,7 +1448,7 @@ if (!$only_bkl) { ); # The versions of non-MSBuild projects (MSBuild ones all use version "10"). - my @vcproj_versions = qw(7 8 9); + my @vcproj_versions = qw(8 9); # Return the "filter" to use for the given file. sub filter_cb diff --git a/build/upmake_script.pl b/build/upmake_script.pl index 594e553c74..1b78bd3044 100755 --- a/build/upmake_script.pl +++ b/build/upmake_script.pl @@ -33,7 +33,7 @@ of files in build/files. If --no-xxx option is specified, the corresponding outputs are not updated. By default everything is. -The version argument of --only-version can be 7, 8, 9 or 10 with the latter +The version argument of --only-version can be 8, 9 or 10 with the latter selecting the MSBuild projects. EOF ; @@ -89,7 +89,7 @@ if (!$only_bkl) { ); # The versions of non-MSBuild projects (MSBuild ones all use version "10"). - my @vcproj_versions = qw(7 8 9); + my @vcproj_versions = qw(8 9); # Return the "filter" to use for the given file. sub filter_cb