From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] grub: Build after Python is available Date: Thu, 17 Oct 2019 16:01:10 +0000 Message-ID: <20191017160110.6501-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8523641068199655307==" List-Id: --===============8523641068199655307== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit The build sometimes aborted because python was not found when Grub was being built for EFI. Fixes: #12209 Signed-off-by: Michael Tremer --- make.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make.sh b/make.sh index ea9cbc10c..170b16504 100755 --- a/make.sh +++ b/make.sh @@ -1132,9 +1132,6 @@ buildipfire() { lfsmake2 lvm2 lfsmake2 multipath-tools lfsmake2 freetype - lfsmake2 grub - lfsmake2 efivar - lfsmake2 efibootmgr lfsmake2 libmnl lfsmake2 libnfnetlink lfsmake2 libnetfilter_queue @@ -1222,6 +1219,9 @@ buildipfire() { lfsmake2 libffi lfsmake2 python lfsmake2 python3 + lfsmake2 grub + lfsmake2 efivar + lfsmake2 efibootmgr lfsmake2 ca-certificates lfsmake2 fireinfo lfsmake2 libnet -- 2.20.1 --===============8523641068199655307==--