From: Junio C Hamano Date: Sat, 12 Sep 2009 05:35:30 +0000 (-0700) Subject: Makefile: remove remnant of separate http/https/ftp helpers X-Git-Tag: v1.6.5-rc1~11^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=85cdaa468d9449bbc5889ba94359c77ccafb65cd;p=git.git Makefile: remove remnant of separate http/https/ftp helpers Signed-off-by: Junio C Hamano --- diff --git a/.gitignore b/.gitignore index 096857e42..46c26cd01 100644 --- a/.gitignore +++ b/.gitignore @@ -104,9 +104,7 @@ git-receive-pack git-reflog git-relink git-remote -git-remote-ftp -git-remote-http -git-remote-https +git-remote-curl git-repack git-repo-config git-request-pull diff --git a/Makefile b/Makefile index 8c44e357c..1ac02d1c9 100644 --- a/Makefile +++ b/Makefile @@ -1655,7 +1655,7 @@ export gitexec_instdir install: all $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)' $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' - $(INSTALL) $(filter-out $(CURL_SYNONYMS), $(ALL_PROGRAMS)) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' + $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive$X git-shell$X git-cvsserver '$(DESTDIR_SQ)$(bindir_SQ)' $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install ifndef NO_PERL