URI: 
       tFix tar call. - libdevuansdk - common library for devuan's simple distro kits
  HTML git clone https://git.parazyd.org/libdevuansdk
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit b6f57c389429397022679ed42de350d4aadf2729
   DIR parent 9afec404754829a70f3b9c5d2c1d0ab67b57fdc6
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Mon, 22 Jun 2020 12:38:54 +0200
       
       Fix tar call.
       
       Diffstat:
         M zlibs/bootstrap                     |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/zlibs/bootstrap b/zlibs/bootstrap
       t@@ -161,13 +161,13 @@ bootstrap_tar_pack() {
                        pushd ${strapdir}
                        mkdir -p ${_dest}
                        silly
       -                sudo tar czfp "$bootstrap_tgz" . \
       +                sudo tar czfp "$bootstrap_tgz" \
                                --acls \
                                --selinux \
                                --xattrs \
                                --xattrs-include=security.capability \
                                --xattrs-include=user.pax.flags \
       -                        --exclude={./dev,./sys,./proc} || zerr
       +                        --exclude={./dev,./sys,./proc} . || zerr
                        popd
                fi
        }