Skip to content

Commit

Permalink
Remove cle relocations from pyinstaller spec (#1309)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Aug 10, 2024
1 parent dd052c2 commit b76fcce
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions angr-management.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import sys

import angr
import capstone
import cle
import debugpy
import parso
import pypcode
Expand All @@ -20,7 +19,6 @@ AM_BASE = pathlib.Path(SPECPATH)
# Python module roots
ANGR_BASE = pathlib.Path(angr.__file__).parent
CAPSTONE_BASE = pathlib.Path(capstone.__file__).parent
CLE_BASE = pathlib.Path(cle.__file__).parent
DEBUGPY_BASE = pathlib.Path(debugpy.__file__).parent
PARSO_BASE = pathlib.Path(parso.__file__).parent
PYPCODE_BASE = pathlib.Path(pypcode.__file__).parent
Expand All @@ -37,8 +35,6 @@ included_data = [
(str(AM_BASE / "angrmanagement" / "resources" / "images"), "angrmanagement/resources/images"),
(str(AM_BASE / "angrmanagement" / "plugins"), "angrmanagement/plugins"),
(str(AM_BASE / "angrmanagement" / "config"), "angrmanagement/config"),
(str(CLE_BASE / "backends" / "pe" / "relocation"), "cle/backends/pe/relocation"),
(str(CLE_BASE / "backends" / "elf" / "relocation"), "cle/backends/elf/relocation"),
(str(ANGR_BASE / "analyses" / "identifier" / "functions"), "angr/analyses/identifier/functions"),
(str(ANGR_BASE / "procedures"), "angr/procedures"),
(str(PARSO_BASE / "python"), "parso/python"),
Expand Down

0 comments on commit b76fcce

Please sign in to comment.