From 9a42db48e0bcf4f34b05a3de1cda23e06f51d131 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Graber?= Date: Tue, 26 Mar 2013 14:03:17 -0400 Subject: [PATCH] Fix 'make clean' MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is mostly to make debuild happy as it doesn't tolerate any leftover file when building twice in a row. Signed-off-by: Stéphane Graber Acked-by: Serge E. Hallyn --- doc/Makefile.am | 2 +- src/python-lxc/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index b5887123d..1a2469548 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -60,6 +60,6 @@ endif lxc-%.sgml : common_options.sgml see_also.sgml -maintainer-clean-local: +clean-local: $(RM) manpage.* *.7 *.5 *.1 $(man_MANS) endif diff --git a/src/python-lxc/Makefile.am b/src/python-lxc/Makefile.am index bdb6dbdd7..f81dbff53 100644 --- a/src/python-lxc/Makefile.am +++ b/src/python-lxc/Makefile.am @@ -16,7 +16,7 @@ install: $(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(prefix) --no-compile $(DISTSETUPOPTS); \ fi -clean: +clean-local: rm -rf build endif -- 2.47.2