diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-06-05 09:36:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-06-05 09:36:13 -0700 |
commit | 09ce4bb6ea7c06c1de82f042cb3ade622b0fa36c (patch) | |
tree | 9b321628bf9932845625fc290285fcb10a2fbc85 /Makefile | |
parent | 46856f4e9d3d0fbfe1888ee19d632dfc04de8fab (diff) | |
download | git-09ce4bb6ea7c06c1de82f042cb3ade622b0fa36c.tar.gz |
build: propagate $DIFF to scripts
git-merge-one-file expects to run "-u" capable "diff", but using
$DIFF is not the right way to do so.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1494,6 +1494,7 @@ SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH)) PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH)) TCLTK_PATH_SQ = $(subst ','\'',$(TCLTK_PATH)) +DIFF_SQ = $(subst ','\'',$(DIFF)) LIBS = $(GITLIBS) $(EXTLIBS) @@ -1582,6 +1583,7 @@ define cmd_munge_script $(RM) $@ $@+ && \ sed -e '1s|#!.*/sh|#!$(SHELL_PATH_SQ)|' \ -e 's|@SHELL_PATH@|$(SHELL_PATH_SQ)|' \ + -e 's|@@DIFF@@|$(DIFF_SQ)|' \ -e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \ -e 's/@@NO_CURL@@/$(NO_CURL)/g' \ -e $(BROKEN_PATH_FIX) \ |