summaryrefslogtreecommitdiff
path: root/gr-utils/python
diff options
context:
space:
mode:
authorjapm48 <japm48@users.noreply.github.com>2020-03-26 16:51:32 +0100
committerMichael Dickens <michael.dickens@ettus.com>2020-04-10 14:57:01 -0400
commit03540032d4f73ccb2d3af9344ef59250c6785a39 (patch)
tree0b1681e9ac3809d413b47c9c89417e133b168e5b /gr-utils/python
parent4c4a85f2ebc43c9b7b3d5fdb8ad8387eae735f5f (diff)
gr-utils: move modtool launcher into its folder
Diffstat (limited to 'gr-utils/python')
-rw-r--r--gr-utils/python/utils/CMakeLists.txt1
-rwxr-xr-xgr-utils/python/utils/gr_modtool20
2 files changed, 0 insertions, 21 deletions
diff --git a/gr-utils/python/utils/CMakeLists.txt b/gr-utils/python/utils/CMakeLists.txt
index 8cb1089b16..d21678dc29 100644
--- a/gr-utils/python/utils/CMakeLists.txt
+++ b/gr-utils/python/utils/CMakeLists.txt
@@ -22,7 +22,6 @@ GR_PYTHON_INSTALL(
GR_PYTHON_INSTALL(
PROGRAMS
- gr_modtool
gr_plot
gr_plot_const
gr_plot_fft
diff --git a/gr-utils/python/utils/gr_modtool b/gr-utils/python/utils/gr_modtool
deleted file mode 100755
index b1468a135b..0000000000
--- a/gr-utils/python/utils/gr_modtool
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright 2012, 2018 Free Software Foundation, Inc.
-#
-# This file is part of GNU Radio
-#
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-#
-""" A tool for editing GNU Radio out-of-tree modules. """
-
-
-from gnuradio.modtool.cli.base import cli
-
-
-if __name__ == '__main__':
- try:
- cli()
- except KeyboardInterrupt:
- pass