aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-05-03 11:03:21 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-05-03 11:03:21 +0200
commitdf670bc3e23b9004fe4b8526e4e1dc8b61615e8e (patch)
treec172ecf6862ef921b7714b3260e845bce919783e
parentc1411047351d443f22f4ed31e3545b708681bcc1 (diff)
Fix: efence library inclusion
Change-Id: I51bc49cb663c61e23407e7da9bc4294344c0e4c0 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--template/etc/macros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/etc/macros.cmake b/template/etc/macros.cmake
index 4c2b64c..2c53983 100644
--- a/template/etc/macros.cmake
+++ b/template/etc/macros.cmake
@@ -197,7 +197,7 @@ CHECK_LIBRARY_EXISTS(efence malloc "" HAVE_LIBEFENCE)
IF(HAVE_LIBEFENCE)
MESSAGE(STATUS "Linking with ElectricFence for debugging purposes...")
SET(libefence_LIBRARIES "-lefence")
- list (APPEND link_libraries libefence_LIBRARIES})
+ list (APPEND link_libraries ${libefence_LIBRARIES})
ENDIF(HAVE_LIBEFENCE)
ENDIF(CMAKE_BUILD_TYPE MATCHES DEBUG)