diff options
author | Tom Rondeau | 2012-10-25 23:00:25 -0400 |
---|---|---|
committer | Tom Rondeau | 2012-10-25 23:00:25 -0400 |
commit | d67c7948339b3d243449b54fa415e0dcfbf33988 (patch) | |
tree | a385e8f9c5836aa3174068736105e3da723f7482 /gnuradio-core/src | |
parent | 8c9a5fdb19046c3cb8d25d6b77dbac87d49d8391 (diff) | |
download | gnuradio-d67c7948339b3d243449b54fa415e0dcfbf33988.tar.gz gnuradio-d67c7948339b3d243449b54fa415e0dcfbf33988.tar.bz2 gnuradio-d67c7948339b3d243449b54fa415e0dcfbf33988.zip |
core: update to build_utils to help with '_i_impl' blocks.
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r-- | gnuradio-core/src/python/build_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/python/build_utils.py b/gnuradio-core/src/python/build_utils.py index cbf991aa5..cf58a9763 100644 --- a/gnuradio-core/src/python/build_utils.py +++ b/gnuradio-core/src/python/build_utils.py @@ -212,7 +212,7 @@ def standard_impl_dict2 (name, code3, package): d = {} d['NAME'] = name d['IMPL_NAME'] = name - d['BASE_NAME'] = name.rstrip("_impl") + d['BASE_NAME'] = name.rstrip("impl").rstrip("_") d['GUARD_NAME'] = 'INCLUDED_%s_%s_H' % (package.upper(), name.upper()) d['WARNING'] = 'WARNING: this file is machine generated. Edits will be overwritten' d['COPYRIGHT'] = copyright |