From 7a4496f606ab3d6594489eeee89ed2140b8c7655 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 30 Jun 2005 17:05:02 +0000 Subject: r8020: - add --with-selftest-prefix option that specify the prefix used in make test - also we use ./prefix test as default and not `pwd`/prefix-test to workaround the path length limit for unix sockets ... char sun_path[108]; ... metze (This used to be commit d04057b932266325b1267597b2bc202db392a88a) --- source4/build/m4/check_path.m4 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'source4/build/m4/check_path.m4') diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index 5fec1c3f05..7ff0a353b8 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -130,6 +130,21 @@ AC_SUBST(bindir) AC_SUBST(sbindir) AC_SUBST(swatdir) +################################################# +# set prefix for 'make test' +selftest_prefix="./" +AC_SUBST(selftest_prefix) +AC_ARG_WITH(selftest-prefix, +[ --with-selftest-prefix=DIR The prefix where make test will be runned (\$selftest_prefix)], +[ case "$withval" in + yes|no) + AC_MSG_WARN([--with-selftest-prefix called without argument - will use default]) + ;; + * ) + selftest_prefix="$withval" + ;; + esac]) + developer=no AC_ARG_ENABLE(developer, [ --enable-developer Turn on developer warnings and debugging (default=no)], [if test x$enable_developer = xyes; then -- cgit