summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2017-03-13 15:16:08 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-03-13 15:36:27 +0000
commit73af9468259cd55358b71f1b8ab7a997d9365c8b (patch)
tree216e83820093fa8f5dd8dab73fad2d7a4d9bdb3b
parent3e75de97b48986c13363334f6690e2b1775b649a (diff)
Resolve link issue due to unresolved symbol sqrtf
Due to a missing trailing \ the -lm was not added to the LDADD and we'd fail at link time. Fixes: 1cdfb660a67 ("Move link against libm to LDADD") Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 1fe1bd9..8aa2756 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -32,7 +32,7 @@ kmscube_LDADD = \
$(DRM_LIBS) \
$(GBM_LIBS) \
$(EGL_LIBS) \
- $(GLES2_LIBS)
+ $(GLES2_LIBS) \
-lm
kmscube_CFLAGS = \