libdevuansdk

common library for devuan's simple distro kits
git clone https://git.parazyd.org/libdevuansdk
Log | Files | Refs | Submodules | README | LICENSE

commit 1fdbd917d8f92333f826491b6cecef078a0f5167
parent edf6dacf55407be8c2823b5b46b9012480640043
Author: Johny Mattsson <johny.mattsson+github@gmail.com>
Date:   Mon,  2 Oct 2017 12:26:02 +1100

Fix for not-tar'ing-stage-4 after unpack.

Not wanting to tar it up should not cause the whole build to abort.

Diffstat:
Mzlibs/bootstrap | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zlibs/bootstrap b/zlibs/bootstrap @@ -214,5 +214,5 @@ EOF print "$i" | sudo tee -a $strapdir/etc/modules >/dev/null done || true - [[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" + [[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" || true }