From e69d207f428b3fabfee69778368a6c13f1aefede Mon Sep 17 00:00:00 2001 From: Klemens Nanni Date: Tue, 08 Mar 2016 12:19:37 -0500 Subject: build/grub: Change wording, use a subshell --- (limited to 'resources/scripts/helpers/build') diff --git a/resources/scripts/helpers/build/module/grub b/resources/scripts/helpers/build/module/grub index e96b7e7..f899bc2 100755 --- a/resources/scripts/helpers/build/module/grub +++ b/resources/scripts/helpers/build/module/grub @@ -1,9 +1,9 @@ #!/bin/bash -# helper script: builds GRUB source code +# helper script: builds GRUB2 source code # # Copyright (C) 2014, 2015 Francis Rowe -# Copyright (C) 2015 Klemens Nanni +# Copyright (C) 2015, 2016 Klemens Nanni # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,17 +25,19 @@ [ "x${DEBUG+set}" = 'xset' ] && set -v set -u -e -# Build GRUB as coreboot payload -# --------------------------------------------------------------------- +# Build GRUB2 as coreboot payload printf "Building GRUB\n" -cd "grub/" +# use a subshell to not end up in grub/ in case of build issues +( +cd grub/ -# clean it first +# clean up first [ -d Makefile ] && make distclean -# build grub +# build ./autogen.sh ./configure --with-platform=coreboot make -j$(nproc) +) -- cgit v0.9.1