Use uppercase variables in kaem-era

lowercase variables are inconsistent, bring them into line with rest of
live-bootstrap
This commit is contained in:
fosslinux 2023-11-28 13:16:09 +11:00
parent f7c028b588
commit 1b47720cbc
22 changed files with 307 additions and 316 deletions

View file

@ -16,7 +16,7 @@ mkdir build src
cd build
# Extract
cp ${distfiles}/${pkg}.tar.gz ../src/
cp ${DISTFILES}/${pkg}.tar.gz ../src/
gzip -d -f ../src/${pkg}.tar.gz
tar xf ../src/${pkg}.tar
rm -r ../src/
@ -46,11 +46,11 @@ cd ..
make
# Install
install bash ${prefix}/bin/
install bash ${PREFIX}/bin/
mkdir /bin/
ln -s ${prefix}/bin/bash /bin/bash
ln -s ${prefix}/bin/bash /bin/sh
ln -s ${prefix}/bin/bash ${prefix}/bin/sh
ln -s ${PREFIX}/bin/bash /bin/bash
ln -s ${PREFIX}/bin/bash /bin/sh
ln -s ${PREFIX}/bin/bash ${PREFIX}/bin/sh
cd ../..
@ -59,7 +59,7 @@ if match x${UPDATE_CHECKSUMS} xTrue; then
sha256sum -o ${pkg}.checksums \
/usr/bin/bash
install ${pkg}.checksums ${srcdir}
install ${pkg}.checksums ${SRCDIR}
else
sha256sum -c ${pkg}.checksums
fi