From: Stepan Kasal Date: Tue, 15 May 2007 18:46:11 +0000 (+0200) Subject: build-sys: simplify "clean" in tests/Makefile.am X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caec351d6709852bf80bacec6fac6a55302357fe;p=util-linux build-sys: simplify "clean" in tests/Makefile.am The construction with "distclean-local" does not seem necessary. Moreover, Automake complains when "clean" is redefined. Simply put the rm to "clean-local". Signed-off-by: Stepan Kasal --- diff --git a/tests/Makefile.am b/tests/Makefile.am index e306bfe6..fdcbf198 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -25,9 +25,5 @@ EXTRA_DIST = expected/* \ ts-mount-remount -distclean-local: +clean-local: rm -rf output diff - -clean: distclean-local - -