Skip to content

Commit

Permalink
fixup! vcxproj: let vcs-svn depend on libgit
Browse files Browse the repository at this point in the history
We really need to let vcs-svn depend on libgit... And the target name is
currently `vcs-svn/lib`. Let's be a little bit more lenient and search
for the substring `vcs-svn`, just in case that the exact target will
change in the future.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Apr 4, 2018
1 parent 8b3ed72 commit f93adde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/buildsystems/Generators/Vcxproj.pm
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ EOM
print F << "EOM";
</ItemGroup>
EOM
if (!$static_library || $target eq 'vcs-svn') {
if (!$static_library || $target =~ 'vcs-svn') {
my $uuid_libgit = $$build_structure{"LIBS_libgit_GUID"};
my $uuid_xdiff_lib = $$build_structure{"LIBS_xdiff/lib_GUID"};

Expand Down

0 comments on commit f93adde

Please sign in to comment.