From f1a5c676b7840bd8ea03cfa0332d62390b6b8171 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sun, 30 Sep 2012 11:47:50 -0700 Subject: [PATCH] Fixed erroneous include dir variable FindGnuradioCore was only working if GNU Radio was installed in typical paths, since the pkg-config variable was wrong. This was fixed in GNU Radio HOWTO a while back. --- cmake/Modules/FindGnuradioCore.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/FindGnuradioCore.cmake b/cmake/Modules/FindGnuradioCore.cmake index 34e85db..87012ab 100644 --- a/cmake/Modules/FindGnuradioCore.cmake +++ b/cmake/Modules/FindGnuradioCore.cmake @@ -5,7 +5,7 @@ FIND_PATH( GNURADIO_CORE_INCLUDE_DIRS NAMES gr_random.h HINTS $ENV{GNURADIO_CORE_DIR}/include/gnuradio - ${PC_GNURADIO_CORE_INCLUDE_DIR} + ${PC_GNURADIO_CORE_INCLUDEDIR} PATHS /usr/local/include/gnuradio /usr/include/gnuradio )