diff options
author | mormj <34754695+mormj@users.noreply.github.com> | 2020-05-22 14:21:09 -0400 |
---|---|---|
committer | Josh Morman <mormjb@gmail.com> | 2020-06-04 10:05:48 -0400 |
commit | 3165f73d7c6224523957fa69beade6069efea6ef (patch) | |
tree | bcc09005ab8cc6b2f6bef4589f5b612eeafb29be /gr-utils/modtool/core/add.py | |
parent | cb1185bc2c12c0c7bd76ab93040a63c39815e847 (diff) |
pybind: add hash check to binding file creation (#3472)
Diffstat (limited to 'gr-utils/modtool/core/add.py')
-rw-r--r-- | gr-utils/modtool/core/add.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-utils/modtool/core/add.py b/gr-utils/modtool/core/add.py index f8cb8329fe..712d44de48 100644 --- a/gr-utils/modtool/core/add.py +++ b/gr-utils/modtool/core/add.py @@ -256,6 +256,8 @@ class ModToolAdd(ModTool): header_info = { "module_name": self.info['modname'], + "filename": self.info['blockname'] + '.h', + "md5hash": "0", "namespace": { "name": "::".join(['gr', self.info['modname']]), "enums": [], |