From c20c748afa1b1bc76022aec345fd33b81c5a04d3 Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sun, 19 Jan 2020 21:19:19 +0100 Subject: [PATCH] Workaround for weird automake buglet The `make distcheckclean` command fails because of lingering .o files in lib/.libs/ which it shouldn't, since both AC_CONFIG_LIBOBJ_DIR() and the subdir-objects automake options are set. This workaround is ugly, but works for now. Signed-off-by: Joachim Nilsson --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index b7cafda..b0b7aed 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,3 +51,4 @@ release: distcheck # Workaround for systemd unit file duing distcheck DISTCHECK_CONFIGURE_FLAGS = --with-systemd=$$dc_install_base/$(systemd) +DISTCLEANFILES = lib/.libs/*