Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@mono-cvs.ximian.com>2009-11-15 17:49:54 +0300
committerAndreas Färber <afaerber@mono-cvs.ximian.com>2009-11-15 17:49:54 +0300
commit4baad309d04c09d767d1f554d7b88c7b716207b5 (patch)
tree9bba45bf583941a3572f808659a9be361d6d5d58 /configure.in
parent5e215b763340820cc47ba97f23ad57fa6f152052 (diff)
2009-11-15 Andreas Faerber <andreas.faerber@web.de>
* configure.in (DTrace): Add missing -s switch for dtrace -h. Fixes BNC #445074. This commit is licensed under the MIT X11 license. svn path=/trunk/mono/; revision=146219
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index c4eb94bc998..34b653c43d0 100644
--- a/configure.in
+++ b/configure.in
@@ -1824,7 +1824,7 @@ if test "x$enable_dtrace" = "xyes"; then
if test "x$DTRACE" = "xno"; then
AC_MSG_RESULT([dtrace utility not found, dtrace support disabled.])
enable_dtrace=no
- elif ! $DTRACE -h $srcdir/data/mono.d > /dev/null 2>&1; then
+ elif ! $DTRACE -h -s $srcdir/data/mono.d > /dev/null 2>&1; then
AC_MSG_RESULT([dtrace doesn't support -h option, dtrace support disabled.])
enable_dtrace=no
fi