From: Stepan Kasal Date: Tue, 15 May 2007 18:46:11 +0000 (+0200) Subject: build-sys: simplify "clean" in tests/Makefile.am X-Git-Tag: v2.13-rc1~135 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caec351d6709852bf80bacec6fac6a55302357fe;p=thirdparty%2Futil-linux.git 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 e306bfe66d..fdcbf198dd 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 - -