summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-04-23 05:42:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-04-23 19:53:32 (GMT)
commit5be3b17f094d832458238e4d2979cf9ab7118b6f (patch)
tree0c79d717ed9567aeea622680f7b44f2657d6070c /Makefile
parent66e35fcb79cad5a2ec2366da956db55da855b20d (diff)
downloadgit-5be3b17f094d832458238e4d2979cf9ab7118b6f.zip
git-5be3b17f094d832458238e4d2979cf9ab7118b6f.tar.gz
git-5be3b17f094d832458238e4d2979cf9ab7118b6f.tar.bz2
Makefile: ignore perl/ subdirectory under NO_PERL
The install target still descends into perl subdirectory when NO_PERL is requested. Fix this. Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 49f36f5..6f602c7 100644
--- a/Makefile
+++ b/Makefile
@@ -1529,7 +1529,9 @@ install: all
$(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
$(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install
+endif
ifndef NO_TCLTK
$(MAKE) -C gitk-git install
$(MAKE) -C git-gui gitexecdir='$(gitexec_instdir_SQ)' install