summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2024-10-18 21:37:02 +0200
committerAndreas Fankhauser hiddenalpha.ch2024-10-18 21:37:02 +0200
commitee253c8be7a67d1eacf4e6239c2067fa9ee420d8 (patch)
tree5ebe0474c939634ca685230f7d726b3ddf2d55fa /contrib
parent5c00d61f1fa9cf128083a57339f49648f09d4a03 (diff)
downloadDeflateAndInflate-ee253c8be7a67d1eacf4e6239c2067fa9ee420d8.zip
DeflateAndInflate-ee253c8be7a67d1eacf4e6239c2067fa9ee420d8.tar.gz
Do NOT remove stuff after build in helper script.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/build-env-setup/README.txt5
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/build-env-setup/README.txt b/contrib/build-env-setup/README.txt
index a41fe05..1f0a1cf 100644
--- a/contrib/build-env-setup/README.txt
+++ b/contrib/build-env-setup/README.txt
@@ -61,11 +61,9 @@ Setup environ vars according to your chosen build system. Here are few examlpes:
### Config for debian
true \
&& PKGS_TO_ADD="ca-certificates curl gcc git make libc-dev tar" \
- && PKGS_TO_DEL="gcc git make libc-dev" \
&& SUDO=sudo \
&& PKGINIT="$SUDO apt update" \
&& PKGADD="$SUDO apt install -y --no-install-recommends" \
- && PKGDEL="$SUDO apt purge -y" \
&& PKGCLEAN="$SUDO apt clean" \
&& HOST= \
&& true
@@ -79,7 +77,6 @@ true \
&& SUDO="/home/${USER:?}/mysudo" \
&& PKGINIT=true \
&& PKGADD="$SUDO apk add" \
- && PKGDEL="$SUDO apk del" \
&& PKGCLEAN=true \
&& HOST="x86_64-w64-mingw32" \
&& true
@@ -142,8 +139,6 @@ true \
;fi \
&& make clean && make -j$(nproc) \
&& if test -z "$HOST"; then $SUDO make install; fi \
- && find . -not -wholename './dist*' -delete \
- && ${PKGDEL:?} $PKGS_TO_DEL && ${PKGCLEAN:?} \
&& dirOfDistBundle="$(realpath dist)" \
&& printf '\n SUCCESS :) Distribution bundle is ready in:\n\n %s\n\n Tip: Before pulling out your hair about how to get that archive out of\n your qemu VM. STOP kluding around with silly tools and learn how\n basic tools do the job perfectly fine:\n\n ssh %s@localhost -p2222 -- sh -c '\''true && cd "%s" && tar c *'\'' | tar x\n\n BTW: In addition 'deflate' and 'inflate' got installed and are ready-to-use.\n\n' "${dirOfDistBundle:?}" "$USER" "${dirOfDistBundle:?}" \
&& true