Skip to content
Snippets Groups Projects
Commit b5ce3620 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

added maintainer address to be extracted from dune.module.

[[Imported from SVN: r5100]]
parent 0a3a65df
No related branches found
No related tags found
No related merge requests found
......@@ -21,11 +21,13 @@ m4_define([DUNE_PARSE_MODULE_FILE],[
[m4_esyscmd([grep ^Version: dune.module | tr '\n' ' ' | sed -e 's/^.*://' -e 's/\s*//g'])])
m4_define([DUNE_MOD_NAME],
[m4_esyscmd([grep ^Module: dune.module | tr '\n' ' ' | sed -e 's/^.*://' -e 's/\s*//g'])])
m4_define([DUNE_MAINTAINER_NAME],
[m4_esyscmd([grep ^Maintainer: dune.module | tr '\n' ' ' | sed -e 's/^.*://' -e 's/\s*//g'])])
])
m4_define([DUNE_AC_INIT],[
DUNE_PARSE_MODULE_FILE
AC_INIT(DUNE_MOD_NAME, DUNE_MOD_VERSION, dune@dune-project.org)
AC_INIT(DUNE_MOD_NAME, DUNE_MOD_VERSION, DUNE_MAINTAINER_NAME)
])
AC_DEFUN([DUNE_CHECK_DEPENDENCIES], [
......
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