summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRomain Naour2016-02-19 22:50:47 +0100
committerKarel Zak2016-02-22 09:50:22 +0100
commit7944a03cef6d0d237beb3e8f8b6b02dbd733cf80 (patch)
tree11ff01ea79d1d7d1302bd24f236e4c1135d994ad /configure.ac
parentlibsmartcols: add sample-scols-continuous (diff)
downloadkernel-qcow2-util-linux-7944a03cef6d0d237beb3e8f8b6b02dbd733cf80.tar.gz
kernel-qcow2-util-linux-7944a03cef6d0d237beb3e8f8b6b02dbd733cf80.tar.xz
kernel-qcow2-util-linux-7944a03cef6d0d237beb3e8f8b6b02dbd733cf80.zip
build-sys: fix typo
When timer_create is available have_timer must be set to "yes". But instead have_time is used. Replace have_time by have_timer. Fixes: http://autobuild.buildroot.net/results/993/9935cd0522d4f978ba2e788a690f66790686b76b Signed-off-by: Romain Naour <romain.naour@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 227ba253f..961c1ab84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -402,7 +402,7 @@ AC_CHECK_FUNCS([clock_gettime], [],
have_timer="no"
AC_CHECK_FUNCS([timer_create],
- [have_time="yes"],
+ [have_timer="yes"],
[AC_CHECK_LIB([rt], [timer_create], [
have_timer="yes"
REALTIME_LIBS="-lrt"