diff options
Diffstat (limited to 'tl-build.sh')
-rwxr-xr-x | tl-build.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tl-build.sh b/tl-build.sh index 73c5184..ac30032 100755 --- a/tl-build.sh +++ b/tl-build.sh | |||
@@ -81,7 +81,7 @@ fi | |||
81 | 81 | ||
82 | # Build Asymptote | 82 | # Build Asymptote |
83 | if [[ ${with_asymptote} == "y" ]];then | 83 | if [[ ${with_asymptote} == "y" ]];then |
84 | cd source/utils/asymptote | 84 | cd ${tl_sourcedir}/utils/asymptote |
85 | ./configure --prefix=/tmp/asyinst --enable-texlive-build \ | 85 | ./configure --prefix=/tmp/asyinst --enable-texlive-build \ |
86 | --enable-static CXXFLAGS=-std=c++11 \ | 86 | --enable-static CXXFLAGS=-std=c++11 \ |
87 | --disable-curl --disable-lsp --disable-gsl --disable-fftw | 87 | --disable-curl --disable-lsp --disable-gsl --disable-fftw |
@@ -97,9 +97,9 @@ if [[ ${build_tl} == "y" ]]; then | |||
97 | ./Build ${enable_xindy} | 97 | ./Build ${enable_xindy} |
98 | if [[ ${with_context} == "y" ]]; then | 98 | if [[ ${with_context} == "y" ]]; then |
99 | cd ${tl_sourcedir} | 99 | cd ${tl_sourcedir} |
100 | tl_bindir=$tl_sourcedir/inst/bin/`ls ${tl_sourcedir}/inst/bin` | 100 | tl_bindir=${tl_sourcedir}/inst/bin/`ls ${tl_sourcedir}/inst/bin` |
101 | cp luametatex-$context_ver/build/native/luametatex $tl_bindir | 101 | cp luametatex-$context_ver/build/native/luametatex $tl_bindir |
102 | cd $tl_bindir | 102 | cd ${tl_bindir} |
103 | ln -s luametatex context | 103 | ln -s luametatex context |
104 | ln -s luametatex mtxrun | 104 | ln -s luametatex mtxrun |
105 | ln -s ../../texmf-dist/scripts/context/lua/context.lua context.lua | 105 | ln -s ../../texmf-dist/scripts/context/lua/context.lua context.lua |
@@ -107,8 +107,8 @@ if [[ ${build_tl} == "y" ]]; then | |||
107 | fi | 107 | fi |
108 | if [[ ${with_asymptote} == "y" ]];then | 108 | if [[ ${with_asymptote} == "y" ]];then |
109 | cd ${tl_sourcedir} | 109 | cd ${tl_sourcedir} |
110 | tl_bindir=$tl_sourcedir/inst/bin/`ls ${tl_sourcedir}/inst/bin` | 110 | tl_bindir=${tl_sourcedir}/inst/bin/`ls ${tl_sourcedir}/inst/bin` |
111 | cp utils/asymptote/asy ${tl_sourcedir}/inst/bin | 111 | cp utils/asymptote/asy ${tl_bindir} |
112 | cd ${tl_bindir} | 112 | cd ${tl_bindir} |
113 | ln -s ../../texmf-dist/asymptote/GUI/xasy.py xasy | 113 | ln -s ../../texmf-dist/asymptote/GUI/xasy.py xasy |
114 | fi | 114 | fi |