Am 01.12.2017 um 18:13 schrieb Johannes Schindelin:
Hi Hannes,
On Fri, 1 Dec 2017, Johannes Sixt wrote:
Am 29.11.2017 um 16:56 schrieb Dan Jacques:
@@ -1989,6 +1986,15 @@ GIT-PERL-DEFINES: FORCE
echo "$$FLAGS" >$@; \
fi
+GIT-PERL-HEADER: $(PERL_HEADER_TEMPLATE) GIT-PERL-DEFINES perl/perl.mak
Makefile
+ $(QUIET_GEN)$(RM) $@ && \
+ INSTLIBDIR=`MAKEFLAGS= $(MAKE) -C perl -s --no-print-directory
instlibdir` && \
+ INSTLIBDIR_EXTRA='$(PERLLIB_EXTRA_SQ)' && \
+ INSTLIBDIR="$$INSTLIBDIR$${INSTLIBDIR_EXTRA:+:$$INSTLIBDIR_EXTRA}" &&
\
+ sed -e 's=@@PATHSEP@@=$(pathsep)=g' \
This doesn't work, unfortunately. When $(pathsep) is ';', we get an incomplete
sed expression because ';' is also a command separator in the sed language.
Funny, I tried this also with ';' as pathsep, and it worked in the Git for
Windows SDK...
My ancient sed vs. your modern sed, perhaps? I can check this on Monday.
-- Hannes