From 7822f784f1edf767cc74044e02702a6d44cee267 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 3 Oct 2009 22:33:47 -0400 Subject: [PATCH] blkid: Avoid a potentially error message when running "make clean" This error isn't terribly important, but apparently it causes some users/developers distress. Signed-off-by: "Theodore Ts'o" --- lib/blkid/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/blkid/Makefile.in b/lib/blkid/Makefile.in index 9169226..9339718 100644 --- a/lib/blkid/Makefile.in +++ b/lib/blkid/Makefile.in @@ -181,7 +181,8 @@ clean:: tests/*.img results test_probe core profiled/* \ checker/* blkid_types.h ../libblkid.a ../libblkid_p.a \ $(SMANPAGES) blkid - -rmdir tests + @echo rmdir tests/tmp tests + @(rmdir tests/tmp tests 2> /dev/null ; exit 0) mostlyclean:: clean distclean:: clean -- 1.8.3.1