Rename /after to /sysa.

This commit is contained in:
Andrius Štikonas 2022-04-07 00:09:45 +01:00
parent 3e2673e274
commit 7a8567dc78
13 changed files with 92 additions and 79 deletions

View file

@ -48,5 +48,6 @@ src_install() {
default
# Remove messed up manpages
rm -r "${DESTDIR}/"*.0
rm "${DESTDIR}/"*.0
rm "${DESTDIR}${PREFIX}/lib/perl5/5.32.1/pod/perldebguts.pod"
}

View file

@ -10,8 +10,6 @@ set -e
# shellcheck source=sysglobal/helpers.sh
. helpers.sh
# shellcheck source=/dev/null
. bootstrap.cfg
export PATH=/usr/bin:/usr/sbin
export PREFIX=/usr

View file

@ -13,8 +13,6 @@ trap 'env - PATH=${PREFIX}/bin PS1="\w # " bash -i' EXIT
# shellcheck source=sysglobal/helpers.sh
. helpers.sh
# shellcheck source=/dev/null
. bootstrap.cfg
trap bash EXIT
@ -92,6 +90,12 @@ if [ "$FORCE_TIMESTAMPS" = True ] ; then
canonicalise_all_files_timestamp
fi
if [ "$UPDATE_CHECKSUMS" = True ] ; then
pushd /usr/src/repo
sha256sum ./* | tee "${SOURCES}/SHA256SUMS.pkgs"
popd
fi
echo "Bootstrapping completed."
cd "${PREFIX}"