From b98c77131bd3d7afb8ad3c24cea149c0152bc4b3 Mon Sep 17 00:00:00 2001 From: Lev Walkin Date: Mon, 9 Oct 2017 06:34:47 +0000 Subject: [PATCH] distclean might not clean properly if not fully compiled --- examples/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index d8ddaa87..fd861e7f 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -42,7 +42,7 @@ EXTRA_DIST = \ CLEANFILES = $(ASN1_FILES_1) $(ASN1_FILES_2) $(ASN1_FILES_3) clean-local: - for dir in ${srcdir}/sample.source.*; do (cd $$dir && make distclean); done + for dir in ${srcdir}/sample.source.*; do (cd $$dir && make distclean || :); done dist-hook: clean-local rm -f `find $(distdir) -name "*.core" -or -name ".tmp.*"`