From 1a2904e021671374d20527b46a10d2de2ae310ce Mon Sep 17 00:00:00 2001 From: Jason Lowe-Power Date: Tue, 23 May 2023 08:41:31 -0700 Subject: [PATCH] scons: Add os import to marshall This file was missing the `import os` after I3ad28b6ee52fd347d2fe71f279baab629e88d12c Change-Id: I7fde59e92f03fd240f48a304488d77628bfdb852 Signed-off-by: Jason Lowe-Power Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/70918 Maintainer: Jason Lowe-Power Maintainer: Bobby Bruce Tested-by: kokoro Reviewed-by: Bobby Bruce --- build_tools/marshal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build_tools/marshal.py b/build_tools/marshal.py index 4a1522f0b8..58c78e1632 100644 --- a/build_tools/marshal.py +++ b/build_tools/marshal.py @@ -50,6 +50,7 @@ this script, and to read in and execute the marshalled code later. import locale import marshal +import os import sys import zlib