From 868b4797d277b2190569d882de38b681af0bcc10 Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Fri, 17 May 2024 14:36:11 +0000 Subject: [PATCH] Fix python build to include tlb --- Ghidra/Debug/Debugger-agent-dbgeng/certification.manifest | 1 + Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/MANIFEST.in | 1 + .../Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/MANIFEST.in diff --git a/Ghidra/Debug/Debugger-agent-dbgeng/certification.manifest b/Ghidra/Debug/Debugger-agent-dbgeng/certification.manifest index cca8607dd9c..f9799eecd2b 100644 --- a/Ghidra/Debug/Debugger-agent-dbgeng/certification.manifest +++ b/Ghidra/Debug/Debugger-agent-dbgeng/certification.manifest @@ -5,6 +5,7 @@ Module.manifest||GHIDRA||||END| data/debugger-launchers/local-dbgeng.bat||GHIDRA||||END| data/debugger-launchers/local-ttd.bat||GHIDRA||||END| src/main/py/LICENSE||GHIDRA||||END| +src/main/py/MANIFEST.in||GHIDRA||||END| src/main/py/README.md||GHIDRA||||END| src/main/py/pyproject.toml||GHIDRA||||END| src/main/py/src/ghidradbg/dbgmodel/DbgModel.idl||GHIDRA||||END| diff --git a/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/MANIFEST.in b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/MANIFEST.in new file mode 100644 index 00000000000..150d74bdc49 --- /dev/null +++ b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/MANIFEST.in @@ -0,0 +1 @@ +graft src \ No newline at end of file diff --git a/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml index a07be476664..122a73141b9 100644 --- a/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml +++ b/Ghidra/Debug/Debugger-agent-dbgeng/src/main/py/pyproject.toml @@ -24,3 +24,9 @@ dependencies = [ [project.urls] "Homepage" = "https://github.com/NationalSecurityAgency/ghidra" "Bug Tracker" = "https://github.com/NationalSecurityAgency/ghidra/issues" + +[tool.setuptools.package-data] +ghidradbg = ["*.tlb"] + +[tool.setuptools] +include-package-data = true