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
ungz --file ${distfiles}/${pkg}.tar.gz --output ../src/${pkg}.tar
ungz --file ${DISTFILES}/${pkg}.tar.gz --output ../src/${pkg}.tar
untar --file ../src/${pkg}.tar
rm ../src/${pkg}.tar
cd ${pkg}
@ -42,10 +42,10 @@ cp util.c.new util.c
make
# Install
cp gzip ${bindir}/gzip
cp gzip ${bindir}/gunzip
chmod 755 ${bindir}/gzip
chmod 755 ${bindir}/gunzip
cp gzip ${BINDIR}/gzip
cp gzip ${BINDIR}/gunzip
chmod 755 ${BINDIR}/gzip
chmod 755 ${BINDIR}/gunzip
cd ../..
@ -54,7 +54,7 @@ if match x${UPDATE_CHECKSUMS} xTrue; then
sha256sum -o ${pkg}.checksums \
/usr/bin/gzip
cp ${pkg}.checksums ${srcdir}
cp ${pkg}.checksums ${SRCDIR}
else
sha256sum -c ${pkg}.checksums
fi