From 1ee29f319d585fba5bd33c2235a1e886e0e441e2 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 17 Sep 2013 12:21:20 -0400 Subject: [PATCH] Fix error when running "make distcheck" Error message: make: *** No rule to make target `build-aux/acx_pthread.m4', needed by `distdir'. Stop. Macro acx_pthread.m4 was previously in build-aux subdirectory. It is now in m4 subdirectory. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 7084e9e..6b54cee 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,7 @@ SUBDIRS = src doc ## We want these in the dist tarball EXTRA_DIST = autogen.sh \ - $(ac_aux_dir)/acx_pthread.m4 \ + m4/acx_pthread.m4 \ pixmaps ACLOCAL_AMFLAGS = -I m4 -- 2.20.1