Jonathan Nieder <jrnieder@xxxxxxxxx> writes: > diff --git a/Makefile b/Makefile > index 8f4cb506ff..727eca5d0a 100644 > --- a/Makefile > +++ b/Makefile > @@ -2108,7 +2108,7 @@ GIT-PERL-HEADER: $(PERL_HEADER_TEMPLATE) GIT-PERL-DEFINES Makefile > INSTLIBDIR_EXTRA='$(PERLLIB_EXTRA_SQ)' && \ > INSTLIBDIR="$$INSTLIBDIR$${INSTLIBDIR_EXTRA:+:$$INSTLIBDIR_EXTRA}" && \ > sed -e 's=@@PATHSEP@@=$(pathsep)=g' \ > - -e 's=@@INSTLIBDIR@@='$$INSTLIBDIR'=g' \ > + -e 's=@@INSTLIBDIR@@='"$$INSTLIBDIR"'=g' \ Good find. FWIW, I'd find it a lot easier to read if the whole thing were enclosed inside a single pair of dq.