Skip to content
Snippets Groups Projects
Commit 0d93b082 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

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
parent cf9cb46a
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment