Skip to content
Snippets Groups Projects
Commit 07c186fa authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[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
parent 68dc0e3e
No related branches found
No related tags found
No related merge requests found
...@@ -11,11 +11,11 @@ tutorial_coupled_SOURCES = tutorial_coupled.cc ...@@ -11,11 +11,11 @@ tutorial_coupled_SOURCES = tutorial_coupled.cc
EXTRA_DIST = \ EXTRA_DIST = \
CMakeLists.txt $(wildcard *.input) \ CMakeLists.txt $(wildcard *.input) \
solutions_coupled/$(wildcard *.hh) \ $(wildcard solutions_coupled/*.hh) \
solutions_coupled/$(wildcard *.diff) \ $(wildcard solutions_coupled/*.diff) \
solutions_coupled/$(wildcard *.input) \ $(wildcard solutions_coupled/*.input) \
solutions_decoupled/$(wildcard *.hh) \ $(wildcard solutions_decoupled/*.hh) \
solutions_decoupled/$(wildcard *.diff) \ $(wildcard solutions_decoupled/*.diff) \
solutions_decoupled/$(wildcard *.input) $(wildcard solutions_decoupled/*.input)
include $(top_srcdir)/am/global-rules include $(top_srcdir)/am/global-rules
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment