Commit eeb6cb83 by Stéphane Graber

Fix autogen failing because of clean/distclean overrides

A previous patch added a clean/distclean target to config/Makefile.am. This conflicts with automake's own target. This change replaces those by a clean-local and distclean-local target. Signed-off-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
parent ad563aea
...@@ -7,9 +7,9 @@ EXTRA_DIST = lxc.conf.ubuntu lxc.conf.libvirt lxc.conf.unknown ...@@ -7,9 +7,9 @@ EXTRA_DIST = lxc.conf.ubuntu lxc.conf.libvirt lxc.conf.unknown
lxc.conf: lxc.conf:
cp $(conffile) $@ cp $(conffile) $@
clean: clean-local:
@$(RM) -f lxc.conf @$(RM) -f lxc.conf
distclean: distclean-local:
@$(RM) -f lxc.conf @$(RM) -f lxc.conf
@$(RM) -f compile config.guess config.sub depcomp install-sh ltmain.sh missing Makefile.in Makefile @$(RM) -f compile config.guess config.sub depcomp install-sh ltmain.sh missing Makefile.in Makefile
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment