diff options
author | Olaf Hering <olaf@aepfle.de> | 2023-10-02 12:18:44 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-10-12 00:37:39 +0300 |
commit | 17b8d8ac3309e2cfed0d8cb3861afdcc23f66ce0 (patch) | |
tree | 5b5d9fc66a9b0bb5c16c19bbfb1156f3d14fd824 /roms | |
parent | d02ce621ea98517a40510f1540813b5dedbe3a79 (diff) |
roms: use PYTHON to invoke python
python3 may not be the expected python version.
Use PYTHON to invoke python.
Fixes: 22e11539e1 ("edk2: replace build scripts")
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'roms')
-rw-r--r-- | roms/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roms/Makefile b/roms/Makefile index 6859685290..67f709ba2d 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -147,7 +147,7 @@ skiboot: cp skiboot/skiboot.lid ../pc-bios/skiboot.lid efi: - python3 edk2-build.py --config edk2-build.config \ + $(PYTHON) edk2-build.py --config edk2-build.config \ --version-override "edk2-stable202302-for-qemu" \ --release-date "03/01/2023" rm -f ../pc-bios/edk2-*.fd.bz2 |