Re: [PATCH 1/2] Makefile: remove unused @@PERLLIBDIR@@ substitution variable

2018-04-23 Thread Junio C Hamano
Jonathan Nieder writes: > Junio noticed that this variable is not quoted correctly when it is > passed to sed. As a shell-quoted string, it should be inside > single-quotes like $(perllibdir_relative_SQ), not outside them like > $INSTLIBDIR. Spreading credit is very much appreciated, but in thi

[PATCH 1/2] Makefile: remove unused @@PERLLIBDIR@@ substitution variable

2018-04-23 Thread Jonathan Nieder
Junio noticed that this variable is not quoted correctly when it is passed to sed. As a shell-quoted string, it should be inside single-quotes like $(perllibdir_relative_SQ), not outside them like $INSTLIBDIR. In fact, this substitution variable is not used. Simplify by removing it. Reported-by