summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/modtool_info.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-27 15:00:30 -0400
committerTom Rondeau <trondeau@vt.edu>2013-03-27 15:00:30 -0400
commitf921bad913346a7ad917d8c0c93d907ef6248848 (patch)
treebc9dd1d08d7237b85952c3b8adb778397c7ee465 /gr-utils/python/modtool/modtool_info.py
parent4c369a6815696b45edc37d22597c2f560441fe16 (diff)
modtool: Updated so new modules built find and link against gnuradio-runtime.
Diffstat (limited to 'gr-utils/python/modtool/modtool_info.py')
-rw-r--r--gr-utils/python/modtool/modtool_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/python/modtool/modtool_info.py b/gr-utils/python/modtool/modtool_info.py
index 680bd41b99..478dbebb7a 100644
--- a/gr-utils/python/modtool/modtool_info.py
+++ b/gr-utils/python/modtool/modtool_info.py
@@ -127,8 +127,8 @@ class ModToolInfo(ModTool):
try:
cmakecache_fid = open(os.path.join(mod_info['build_dir'], 'CMakeCache.txt'))
for line in cmakecache_fid:
- if line.find('GNURADIO_CORE_INCLUDE_DIRS:%s' % path_or_internal) != -1:
- inc_dirs += line.replace('GNURADIO_CORE_INCLUDE_DIRS:%s=' % path_or_internal, '').strip().split(';')
+ if line.find('GNURADIO_RUNTIME_INCLUDE_DIRS:%s' % path_or_internal) != -1:
+ inc_dirs += line.replace('GNURADIO_RUNTIME_INCLUDE_DIRS:%s=' % path_or_internal, '').strip().split(';')
if line.find('GRUEL_INCLUDE_DIRS:%s' % path_or_internal) != -1:
inc_dirs += line.replace('GRUEL_INCLUDE_DIRS:%s=' % path_or_internal, '').strip().split(';')
except IOError: