Skip to content

Commit 85cdaa4

Browse files
committed
Makefile: remove remnant of separate http/https/ftp helpers
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2d14d65 commit 85cdaa4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ git-receive-pack
104104
git-reflog
105105
git-relink
106106
git-remote
107-
git-remote-ftp
108-
git-remote-http
109-
git-remote-https
107+
git-remote-curl
110108
git-repack
111109
git-repo-config
112110
git-request-pull

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@ export gitexec_instdir
16551655
install: all
16561656
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
16571657
$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1658-
$(INSTALL) $(filter-out $(CURL_SYNONYMS), $(ALL_PROGRAMS)) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
1658+
$(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)'
16591659
$(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X git-shell$X git-cvsserver '$(DESTDIR_SQ)$(bindir_SQ)'
16601660
$(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install
16611661
ifndef NO_PERL

0 commit comments

Comments
 (0)