From 80ed458cacf2bf425a2dbb7ef73491b8f331aef5 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 8 Nov 2021 18:46:10 +0000 Subject: [PATCH] gem5/gem5-aarch64-native: fix fuzz in patch Not sure how this wasn't caught by the CI, human error no doubt. Signed-off-by: Ross Burton --- meta-gem5/recipes-devtools/gem5/files/mapping.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/meta-gem5/recipes-devtools/gem5/files/mapping.patch b/meta-gem5/recipes-devtools/gem5/files/mapping.patch index 5eb34d82..3a7cb437 100644 --- a/meta-gem5/recipes-devtools/gem5/files/mapping.patch +++ b/meta-gem5/recipes-devtools/gem5/files/mapping.patch @@ -23,13 +23,13 @@ diff --git a/src/python/m5/debug.py b/src/python/m5/debug.py index d808850cc..787a39ece 100644 --- a/src/python/m5/debug.py +++ b/src/python/m5/debug.py -@@ -24,7 +24,7 @@ - # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - +@@ -26,7 +26,7 @@ + + from __future__ import print_function + -from collections import Mapping +from collections.abc import Mapping - + import _m5.debug from _m5.debug import SimpleFlag, CompoundFlag --