From 01a1a4bca6c1a46625ebc7dbfa7249b4029cb297 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Fri, 29 Jun 2012 10:07:44 +0200 Subject: [PATCH] perl/Makefile: Fix a missing double-quote Signed-off-by: Johannes Sixt Acked-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- perl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl/Makefile b/perl/Makefile index 2e8f9804cf..6ca7d472eb 100644 --- a/perl/Makefile +++ b/perl/Makefile @@ -61,7 +61,7 @@ $(makfile): ../GIT-CFLAGS Makefile subdir=/$${i%/*}; \ fi; \ echo ' $(RM) "$$(DESTDIR)$(instdir_SQ)/'$$i'.pm"' >> $@; \ - echo ' mkdir -p "$$(DESTDIR)$(instdir_SQ)'$$subdir >> $@; \ + echo ' mkdir -p "$$(DESTDIR)$(instdir_SQ)'$$subdir'"' >> $@; \ echo ' cp '$$i'.pm "$$(DESTDIR)$(instdir_SQ)/'$$i'.pm"' >> $@; \ done echo ' $(RM) "$$(DESTDIR)$(instdir_SQ)/Error.pm"' >> $@ -- 2.11.4.GIT