/usr/share/dune/aclocal/dune_autobuild.m4 is in libdune-common-dev 2.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #
# Add configure flags needed to create log files for dune-autobuild
#
AC_DEFUN([DUNE_AUTOBUILD_FLAGS],[
# special settings for check-log
AC_ARG_WITH([hostid],
AS_HELP_STRING([--with-hostid=HOST_IDENTIFIER],
[host identifier used for automated test runs]))
AS_IF([test "x$with_hostid" = "xno"],[
with_hostid="$ac_hostname (`uname -sm`, $COMPILER_NAME)";
])
AC_SUBST([hostid], [$with_hostid])
AC_ARG_WITH([tag],
AS_HELP_STRING([--with-tag=TAG],
[tag to use for automated test runs]))
AS_IF([test "x$with_tag" = "xno"],[
with_tag=foo
])
AC_SUBST([tag], [$with_tag])
AC_ARG_WITH([revision],
AS_HELP_STRING([--with-revision=TAG],
[revision to use for automated test runs]))
AS_IF([test "x$with_revision" = "xno"],[
with_revision=bar])
AC_SUBST([revision], [$with_revision])
])
|