aboutsummaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2012-06-29 10:07:44 +0200
committerJunio C Hamano <gitster@pobox.com>2012-06-29 13:04:50 -0700
commit01a1a4bca6c1a46625ebc7dbfa7249b4029cb297 (patch)
treed628753f5e42cbae1c48ed8806e5179ea7526402 /perl
parent73abda3b2ad0a2053f29a6f0d624ede89531c437 (diff)
downloadgit-01a1a4bca6c1a46625ebc7dbfa7249b4029cb297.tar.gz
perl/Makefile: Fix a missing double-quote
Signed-off-by: Johannes Sixt <j6t@kdbg.org> Acked-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'perl')
-rw-r--r--perl/Makefile2
1 files changed, 1 insertions, 1 deletions
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"' >> $@