diff options
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/utils/CMakeLists.txt | 1 | ||||
-rwxr-xr-x | gr-utils/python/utils/gr_modtool | 20 |
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 |