diff options
author | Leah Rowe <leah@libreboot.org> | 2023-05-11 10:21:48 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-05-11 10:21:48 +0100 |
commit | 3da0ee4f73117edc1daaca6cb1ed9cb9484996a2 (patch) | |
tree | 3d684f46c725f464ebc43f80c6fb2e8ff9a164de /resources/me_cleaner/patches | |
parent | 6290f999e2a85c0102a19087c9c925c621e14146 (diff) |
remove python3 patches
python 3 is default now, in all the distros
specifically calling "python3" often doesn't work anymore
python2 is obsolete
let python2 die
Diffstat (limited to 'resources/me_cleaner/patches')
-rw-r--r-- | resources/me_cleaner/patches/0001-specifically-call-python3-in-me_cleaner.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/resources/me_cleaner/patches/0001-specifically-call-python3-in-me_cleaner.patch b/resources/me_cleaner/patches/0001-specifically-call-python3-in-me_cleaner.patch deleted file mode 100644 index 024a2438..00000000 --- a/resources/me_cleaner/patches/0001-specifically-call-python3-in-me_cleaner.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 8d613d45f6fc0f9464bc5f6e5893b5945500c286 Mon Sep 17 00:00:00 2001 -From: Leah Rowe <leah@libreboot.org> -Date: Sun, 13 Mar 2022 18:48:29 +0000 -Subject: [PATCH 1/1] specifically call python3 in me_cleaner - -it was referencing "python" which is ambiguous. this causes -problems on some setups ---- - me_cleaner.py | 2 +- - setup.py | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/me_cleaner.py b/me_cleaner.py -index c2adf0e..d74b16b 100755 ---- a/me_cleaner.py -+++ b/me_cleaner.py -@@ -1,4 +1,4 @@ --#!/usr/bin/python -+#!/usr/bin/env python3 - - # me_cleaner - Tool for partial deblobbing of Intel ME/TXE firmware images - # Copyright (C) 2016-2018 Nicola Corna <nicola@corna.info> -diff --git a/setup.py b/setup.py -index 9928e5d..f04e336 100755 ---- a/setup.py -+++ b/setup.py -@@ -1,4 +1,4 @@ --#!/usr/bin/python -+#!/usr/bin/env python3 - - from setuptools import setup - --- -2.25.1 - |