]> git.ipfire.org Git - thirdparty/git.git/blobdiff - config.mak.uname
l10n: it.po: update the Italian translation for Git 2.24.0 round #2
[thirdparty/git.git] / config.mak.uname
index db7f06b95fda4ea8de9f409e11f594c163220463..cc8efd95b178a2361caed810d6c16ec52eedcc86 100644 (file)
@@ -703,20 +703,24 @@ vcxproj:
        perl contrib/buildsystems/generate -g Vcxproj
        git add -f git.sln {*,*/lib,t/helper/*}/*.vcxproj
 
-       # Generate the LinkOrCopyBuiltins.targets file
+       # Generate the LinkOrCopyBuiltins.targets and LinkOrCopyRemoteHttp.targets file
        (echo '<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">' && \
         echo '  <Target Name="CopyBuiltins_AfterBuild" AfterTargets="AfterBuild">' && \
         for name in $(BUILT_INS);\
         do \
           echo '    <Copy SourceFiles="$$(OutDir)\git.exe" DestinationFiles="$$(OutDir)\'"$$name"'" SkipUnchangedFiles="true" UseHardlinksIfPossible="true" />'; \
         done && \
+        echo '  </Target>' && \
+        echo '</Project>') >git/LinkOrCopyBuiltins.targets
+       (echo '<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">' && \
+        echo '  <Target Name="CopyBuiltins_AfterBuild" AfterTargets="AfterBuild">' && \
         for name in $(REMOTE_CURL_ALIASES); \
         do \
           echo '    <Copy SourceFiles="$$(OutDir)\'"$(REMOTE_CURL_PRIMARY)"'" DestinationFiles="$$(OutDir)\'"$$name"'" SkipUnchangedFiles="true" UseHardlinksIfPossible="true" />'; \
         done && \
         echo '  </Target>' && \
-        echo '</Project>') >git/LinkOrCopyBuiltins.targets
-       git add -f git/LinkOrCopyBuiltins.targets
+        echo '</Project>') >git-remote-http/LinkOrCopyRemoteHttp.targets
+       git add -f git/LinkOrCopyBuiltins.targets git-remote-http/LinkOrCopyRemoteHttp.targets
 
        # Add command-list.h
        $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 command-list.h
@@ -724,11 +728,10 @@ vcxproj:
 
        # Add scripts
        rm -f perl/perl.mak
-       $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 \
-               $(SCRIPT_LIB) $(SCRIPT_SH_GEN) $(SCRIPT_PERL_GEN)
+       $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(SCRIPT_LIB) $(SCRIPTS)
        # Strip out the sane tool path, needed only for building
        sed -i '/^git_broken_path_fix ".*/d' git-sh-setup
-       git add -f $(SCRIPT_LIB) $(SCRIPT_SH_GEN) $(SCRIPT_PERL_GEN)
+       git add -f $(SCRIPT_LIB) $(SCRIPTS)
 
        # Add Perl module
        $(MAKE) $(LIB_PERL_GEN)
@@ -758,6 +761,10 @@ vcxproj:
        $(MAKE) -C templates
        git add -f templates/boilerplates.made templates/blt/
 
+       # Add the translated messages
+       make MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 $(MOFILES)
+       git add -f $(MOFILES)
+
        # Add build options
        $(MAKE) MSVC=1 SKIP_VCPKG=1 prefix=/mingw64 GIT-BUILD-OPTIONS
        git add -f GIT-BUILD-OPTIONS