diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2024-12-17 18:32:01 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-12-17 21:48:54 +0100 |
commit | 2456374e782b83c4087cc819ea019ea92b535bf7 (patch) | |
tree | 03fd9ee3aceba6e755fbb2ad3eb5f9888fba3acb /config.mak.uname | |
parent | cmake: put the Perl modules into the correct location again (diff) | |
download | git-2456374e782b83c4087cc819ea019ea92b535bf7.tar.xz git-2456374e782b83c4087cc819ea019ea92b535bf7.zip |
cmake/vcxproj: stop special-casing `remote-ext`
When the `vcxproj` target was introduced in `config.mak.uname` to allow
building Git with the Visual C toolchain, the `git remote-ext` command
was always executed in its dashed form. Therefore, it was impossible to
pass the test suite unless that command existed in its dashed form, and
we had to special-case this.
Later, when the `vcxproj` target got out of fashion because Visual
Studio gained native support for CMake builds, this special-casing was
copied without questioning it.
But as of 675df192c5f (transport-helper: do not run git-remote-ext etc.
in dashed form, 2020-08-26), the reason for this special-casing no
longer exists. So let's just drop it.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.uname')
-rw-r--r-- | config.mak.uname | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/config.mak.uname b/config.mak.uname index d5112168a4..b12d4e168a 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -819,10 +819,6 @@ vcxproj: sed -i 's|\(git\)-\([-a-z]*\)\.exe"|\1.exe" \2|g' \ bin-wrappers/git-{receive-pack,upload-archive} git add -f $(test_bindir_programs) - # remote-ext is a builtin, but invoked as if it were external - sed 's|receive-pack|remote-ext|g' \ - <bin-wrappers/git-receive-pack >bin-wrappers/git-remote-ext - git add -f bin-wrappers/git-remote-ext # Add templates $(MAKE) -C templates |