diff options
author | Mike Gilbert <floppym@gentoo.org> | 2019-03-21 00:28:09 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2019-03-21 00:28:09 -0400 |
commit | 94db4d57fa4045ef90e9394f5821f51e60505939 (patch) | |
tree | f89a3363430895cec31bdd7649a7c07219aec643 /sys-boot/grub | |
parent | sys-boot/grub: unifont 12.0.01 (diff) | |
download | gentoo-94db4d57fa4045ef90e9394f5821f51e60505939.tar.gz gentoo-94db4d57fa4045ef90e9394f5821f51e60505939.tar.bz2 gentoo-94db4d57fa4045ef90e9394f5821f51e60505939.zip |
sys-boot/grub: redirect stdout while sourcing bootstrap.conf
Package-Manager: Portage-2.3.62, Repoman-2.3.12_p83
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-boot/grub')
-rw-r--r-- | sys-boot/grub/grub-9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index 4de2f017c338..7ae9bb427d99 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999.ebuild @@ -138,7 +138,7 @@ src_unpack() { git-r3_src_unpack cd "${P}" || die local GNULIB_URI="https://git.savannah.gnu.org/git/gnulib.git" - local GNULIB_REVISION=$(source bootstrap.conf; echo "${GNULIB_REVISION}") + local GNULIB_REVISION=$(source bootstrap.conf >/dev/null; echo "${GNULIB_REVISION}") git-r3_fetch "${GNULIB_URI}" "${GNULIB_REVISION}" git-r3_checkout "${GNULIB_URI}" gnulib fi |