summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-07-18 19:20:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-07-18 19:20:32 (GMT)
commit36b37afda6487113a981b036431fa97aa3fe2234 (patch)
tree67ee70a1db67a11fe7717bc67f2e2607847d52f1 /Makefile
parentb9632c9d95f601c3d557cdbad60c06fcc7d30110 (diff)
parent6600054e9b047e47a6dca0dc07076194b46e2720 (diff)
downloadgit-36b37afda6487113a981b036431fa97aa3fe2234.zip
git-36b37afda6487113a981b036431fa97aa3fe2234.tar.gz
git-36b37afda6487113a981b036431fa97aa3fe2234.tar.bz2
Merge branch 'dj/runtime-prefix'
POSIX portability fix in Makefile to fix a glitch introduced a few releases ago. * dj/runtime-prefix: Makefile: tweak sed invocation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0cb6590..3b1effb 100644
--- a/Makefile
+++ b/Makefile
@@ -2110,7 +2110,7 @@ $(SCRIPT_PERL_GEN): % : %.perl GIT-PERL-DEFINES GIT-PERL-HEADER GIT-VERSION-FILE
$(QUIET_GEN)$(RM) $@ $@+ && \
sed -e '1{' \
-e ' s|#!.*perl|#!$(PERL_PATH_SQ)|' \
- -e ' rGIT-PERL-HEADER' \
+ -e ' r GIT-PERL-HEADER' \
-e ' G' \
-e '}' \
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \