Merge pull request #1452 from rubenk/configure-silence-configure-check
authorRuben Kerkhof <ruben@tilaa.nl>
Fri, 11 Dec 2015 20:36:31 +0000 (21:36 +0100)
committerRuben Kerkhof <ruben@tilaa.nl>
Fri, 11 Dec 2015 20:36:31 +0000 (21:36 +0100)
configure.ac: send output of check to /dev/null

configure.ac

index 655d6d8..7f24978 100644 (file)
@@ -396,7 +396,7 @@ AC_CHECK_HEADERS(sys/sysctl.h, [], [],
 AC_MSG_CHECKING([for sysctl kern.cp_times])
 if test -x /sbin/sysctl
 then
-       /sbin/sysctl kern.cp_times 2>/dev/null
+       /sbin/sysctl kern.cp_times >/dev/null 2>&1
        if test $? -eq 0
        then
                AC_MSG_RESULT([yes])