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).
This commit is contained in:
Vadim Zeitlin 2021-07-31 19:11:35 +01:00
parent c533dab96a
commit 6e40b2525e
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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