diff options
author | Norbert Preining <preining@logic.at> | 2019-02-24 15:12:57 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2019-02-24 15:12:57 +0000 |
commit | 1314fbe93790c501dc436a5cf99f106b9e5c0f63 (patch) | |
tree | 04dc7734c8be8ffe385d41f4388826ef5857b6f9 /Master/texmf-dist/scripts/context/stubs/install | |
parent | eb80ce7b34f59896a1dfee5ca422495394d6677f (diff) |
Revert "ConTeXt version 2019.02.22 19:35"
This reverts commit 5c6357cdb820b4f628d036ba7b2248f221d50c0b.
git-svn-id: svn://tug.org/texlive/trunk@50112 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/context/stubs/install')
-rwxr-xr-x | Master/texmf-dist/scripts/context/stubs/install/first-setup.sh | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/Master/texmf-dist/scripts/context/stubs/install/first-setup.sh b/Master/texmf-dist/scripts/context/stubs/install/first-setup.sh index 71fe32c1629..11af492333c 100755 --- a/Master/texmf-dist/scripts/context/stubs/install/first-setup.sh +++ b/Master/texmf-dist/scripts/context/stubs/install/first-setup.sh @@ -17,23 +17,9 @@ cpu=`uname -m` case "$system" in # linux Linux) - if command -v ldd >/dev/null && ldd --version 2>&1 | grep -E '^musl' >/dev/null - then - libc=musl - else - libc=glibc - fi case "$cpu" in - i*86) - case "$libc" in - glibc) platform="linux" ;; - musl) platform="linuxmusl" ;; - esac ;; - x86_64|ia64) - case "$libc" in - glibc) platform="linux-64" ;; - musl) platform="linuxmusl-64" ;; - esac ;; + i*86) platform="linux" ;; + x86_64|ia64) platform="linux-64" ;; # a little bit of cheating with ppc64 (won't work on Gentoo) ppc|ppc64) platform="linux-ppc" ;; @@ -152,8 +138,8 @@ fi # download or update the distribution # you may remove the --context=beta switch if you want to use "current" # you can use --engine=luatex if you want just mkiv -env PATH="$PWD/bin:$CONTEXTROOT/texmf-$platform/bin:$PATH" MTX_PLATFORM="$platform" \ -./bin/mtxrun --script ./bin/mtx-update.lua --force --update --make --context=beta --platform="$platform" --texroot="$CONTEXTROOT" $@ +env PATH="$PWD/bin:$CONTEXTROOT/texmf-$platform/bin:$PATH" \ +./bin/mtxrun --script ./bin/mtx-update.lua --force --update --make --context=beta --platform=$platform --texroot="$CONTEXTROOT" $@ echo echo "When you want to use context, you need to initialize the tree by typing:" |