summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gr-blocks/python/qa_affinity.py (renamed from gnuradio-core/src/python/gnuradio/gr/qa_affinity.py)5
-rw-r--r--gr-uhd/include/uhd/CMakeLists.txt2
2 files changed, 4 insertions, 3 deletions
diff --git a/gnuradio-core/src/python/gnuradio/gr/qa_affinity.py b/gr-blocks/python/qa_affinity.py
index 7b3ca6ed63..f06b2804fe 100644
--- a/gnuradio-core/src/python/gnuradio/gr/qa_affinity.py
+++ b/gr-blocks/python/qa_affinity.py
@@ -21,6 +21,7 @@
#
from gnuradio import gr, gr_unittest
+import blocks_swig as blocks
class test_affinity(gr_unittest.TestCase):
@@ -34,8 +35,8 @@ class test_affinity(gr_unittest.TestCase):
# Just run some data through and make sure it doesn't puke.
src_data = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
- src = gr.vector_source_f(src_data)
- snk = gr.vector_sink_f()
+ src = blocks.vector_source_f(src_data)
+ snk = blocks.vector_sink_f()
src.set_processor_affinity([0,])
self.tb.connect(src, snk)
diff --git a/gr-uhd/include/uhd/CMakeLists.txt b/gr-uhd/include/uhd/CMakeLists.txt
index 066487c6ca..71c17b89cd 100644
--- a/gr-uhd/include/uhd/CMakeLists.txt
+++ b/gr-uhd/include/uhd/CMakeLists.txt
@@ -25,6 +25,6 @@ install(FILES
usrp_source.h
usrp_sink.h
amsg_source.h
- DESTINATION ${GR_INCLUDE_DIR}/gnuradio/gr_uhd
+ DESTINATION ${GR_INCLUDE_DIR}/gnuradio/uhd
COMPONENT "uhd_devel"
)