From e2829542f8d63138abe19ef638a0845d18695d5b Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Tue, 27 May 2008 08:55:25 +0200 Subject: [PATCH] Fix reference to $(template_dir) in Makefile. The brackets were missing, so that 'make install' would install into the directory template/emplate_dir. Signed-off-by: Johannes Sixt --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d8edd42a23..3fd53e4e03 100644 --- a/Makefile +++ b/Makefile @@ -1260,7 +1260,7 @@ remove-dashes: ifeq ($(firstword $(subst /, ,$(template_dir))),..) template_instdir = $(gitexecdir)/$(template_dir) else -template_instdir = $template_dir +template_instdir = $(template_dir) endif export template_instdir -- 2.11.4.GIT