From b904d666b08ad932ef48cad157ec3370f5b48ec4 Mon Sep 17 00:00:00 2001 From: Ruslan Mstoi Date: Mon, 11 Sep 2023 16:52:04 +0300 Subject: [PATCH] docs: intel_tdx: fix python not found error Fix make error: $ make -C BaseTools -j `nproc` /bin/sh: line 1: python: command not found make[1]: *** [GNUmakefile:11: test] Error 127 Signed-off-by: Ruslan Mstoi --- docs/intel_tdx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intel_tdx.md b/docs/intel_tdx.md index d70f5123f..2917331f8 100644 --- a/docs/intel_tdx.md +++ b/docs/intel_tdx.md @@ -50,9 +50,9 @@ The firmware can be built as follows: git clone https://github.com/tianocore/edk2.git cd edk2 git checkout 13b97736c876919b9786055829caaa4fa46984b7 +source ./edksetup.sh git submodule update --init --recursive make -C BaseTools -j `nproc` -source ./edksetup.sh build -p OvmfPkg/IntelTdx/IntelTdxX64.dsc -a X64 -t GCC5 -b RELEASE ```