0001-specifically-call-python3-in-me_cleaner.patch 899 B

123456789101112131415161718192021222324252627282930313233343536
  1. From 8d613d45f6fc0f9464bc5f6e5893b5945500c286 Mon Sep 17 00:00:00 2001
  2. From: Leah Rowe <leah@libreboot.org>
  3. Date: Sun, 13 Mar 2022 18:48:29 +0000
  4. Subject: [PATCH 1/1] specifically call python3 in me_cleaner
  5. it was referencing "python" which is ambiguous. this causes
  6. problems on some setups
  7. ---
  8. me_cleaner.py | 2 +-
  9. setup.py | 2 +-
  10. 2 files changed, 2 insertions(+), 2 deletions(-)
  11. diff --git a/me_cleaner.py b/me_cleaner.py
  12. index c2adf0e..d74b16b 100755
  13. --- a/me_cleaner.py
  14. +++ b/me_cleaner.py
  15. @@ -1,4 +1,4 @@
  16. -#!/usr/bin/python
  17. +#!/usr/bin/env python3
  18. # me_cleaner - Tool for partial deblobbing of Intel ME/TXE firmware images
  19. # Copyright (C) 2016-2018 Nicola Corna <nicola@corna.info>
  20. diff --git a/setup.py b/setup.py
  21. index 9928e5d..f04e336 100755
  22. --- a/setup.py
  23. +++ b/setup.py
  24. @@ -1,4 +1,4 @@
  25. -#!/usr/bin/python
  26. +#!/usr/bin/env python3
  27. from setuptools import setup
  28. --
  29. 2.25.1