From 0d93b082ebf47d72fae6d4c2ca65f753463aeb8d Mon Sep 17 00:00:00 2001
From: Michael Hanselmann <hansmi@google.com>
Date: Mon, 23 Jun 2008 13:15:18 +0000
Subject: [PATCH] Makefile.am: Don't create "--" directory

Automake automatically appends "--" to @mkdir_p@. In case you have
a directory named "--" in your source tree, you can remove it using
the command "rm -rf -- --".

Reviewed-by: iustinp
---
 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 9a194ca59..41a7e3c2a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -269,7 +269,7 @@ distcheck-hook:
 	fi
 
 install-exec-local:
-	@mkdir_p@ -- "$(DESTDIR)${localstatedir}/lib/ganeti" \
+	@mkdir_p@ "$(DESTDIR)${localstatedir}/lib/ganeti" \
 	  "$(DESTDIR)${localstatedir}/log/ganeti" \
 	  "$(DESTDIR)${localstatedir}/run/ganeti"
 
-- 
GitLab