From 2e467029cf3c0e00766e2afb6482e37d75ccf645 Mon Sep 17 00:00:00 2001 From: Matúš Honěk Date: May 30 2018 11:52:16 +0000 Subject: Ticket 49333 - Do not remove versioned man pages Bug Description: Until resolving ticket 49689 in 50b5449, running `make clean' removed also man pages which were tracked in the versioning system (notably man1 and man8). Fix Description: Bring back only removal of man3 man pages as they are autogenerated and thus should not be tracked. https://pagure.io/389-ds-base/issue/49333 Author: mhonek Review by: mreynolds (thanks!) --- diff --git a/Makefile.am b/Makefile.am index 2db1b93..4e02606 100644 --- a/Makefile.am +++ b/Makefile.am @@ -291,6 +291,7 @@ CLEANFILES = dberrstrs.h ns-slapd.properties \ clean-local: -rm -rf dist -rm -rf $(abs_top_builddir)/html + -rm -rf $(abs_top_builddir)/man/man3 if RUST_ENABLE CARGO_TARGET_DIR=$(abs_top_builddir)/rs cargo clean --manifest-path=$(srcdir)/src/libsds/Cargo.toml endif