summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Oshea2012-04-30 15:57:41 -0700
committerJohnathan Corgan2012-04-30 15:57:41 -0700
commit9bab2daba836ad6c121b5237af287efb7dc5968e (patch)
tree4c0803dcee870d65c9b7ff3465ea78e68869fa2f
parent4e3a048576c02505fdac5d27feef0a3ebfabfaea (diff)
downloadgnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.tar.gz
gnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.tar.bz2
gnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.zip
gruel: fix linker assumption made explicit on Ubuntu 12.04
-rw-r--r--gruel/src/lib/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/gruel/src/lib/CMakeLists.txt b/gruel/src/lib/CMakeLists.txt
index cd7b7abf4..2a96163ce 100644
--- a/gruel/src/lib/CMakeLists.txt
+++ b/gruel/src/lib/CMakeLists.txt
@@ -81,7 +81,7 @@ list(APPEND gruel_sources
)
add_library(gruel SHARED ${gruel_sources})
-target_link_libraries(gruel ${Boost_LIBRARIES})
+target_link_libraries(gruel ${Boost_LIBRARIES} -lpthread)
GR_LIBRARY_FOO(gruel RUNTIME_COMPONENT "gruel_runtime" DEVEL_COMPONENT "gruel_devel")
########################################################################