From 07c186fa656642c3d48c8a193921f9a559779463 Mon Sep 17 00:00:00 2001 From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de> Date: Wed, 24 Sep 2014 10:12:38 +0000 Subject: [PATCH] [autotools] Fix wildcard for sub-directory cmake/module. Once more, the complete path must be part of the wildcard. (reviewed by natalies, like last commit) git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@13410 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- tutorial/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tutorial/Makefile.am b/tutorial/Makefile.am index 41262b4222..4e57ac83cd 100644 --- a/tutorial/Makefile.am +++ b/tutorial/Makefile.am @@ -11,11 +11,11 @@ tutorial_coupled_SOURCES = tutorial_coupled.cc EXTRA_DIST = \ CMakeLists.txt $(wildcard *.input) \ - solutions_coupled/$(wildcard *.hh) \ - solutions_coupled/$(wildcard *.diff) \ - solutions_coupled/$(wildcard *.input) \ - solutions_decoupled/$(wildcard *.hh) \ - solutions_decoupled/$(wildcard *.diff) \ - solutions_decoupled/$(wildcard *.input) + $(wildcard solutions_coupled/*.hh) \ + $(wildcard solutions_coupled/*.diff) \ + $(wildcard solutions_coupled/*.input) \ + $(wildcard solutions_decoupled/*.hh) \ + $(wildcard solutions_decoupled/*.diff) \ + $(wildcard solutions_decoupled/*.input) include $(top_srcdir)/am/global-rules -- GitLab