diff options
| author | Elias Bachaalany <elias.bachaalany@gmail.com> | 2021-12-27 21:27:13 -0800 |
|---|---|---|
| committer | Elias Bachaalany <elias.bachaalany@gmail.com> | 2021-12-27 21:27:13 -0800 |
| commit | 93cab84b1fec599f120e31bbed3a1bf513adaf06 (patch) | |
| tree | e67638f4aaba754e5b1f9add5b077d6e23e0bbb3 /setup.py | |
| parent | 1a62826bb03b2b0f8f6e2c4df3d3370e4c0cb8c2 (diff) | |
| download | focaccia-miasm-93cab84b1fec599f120e31bbed3a1bf513adaf06.tar.gz focaccia-miasm-93cab84b1fec599f120e31bbed3a1bf513adaf06.zip | |
Minor modifications (incl. typos)
- added a more descriptive error message to bin_steam_ida. - fixed typo in setup.py
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py index e317877a..52fc6f0a 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ if is_win and is_64bit: if not win_force_clang: print("Warning: couldn't find a Clang/LLVM installation. Some runtime functions needed by the jitter won't be compiled.") -def buil_all(): +def build_all(): packages=[ "miasm", "miasm/arch", @@ -352,5 +352,5 @@ def _write_pkg_file(self, file): DistributionMetadata.write_pkg_file = _write_pkg_file -buil_all() +build_all() |