diff options
Diffstat (limited to 'tl-build.sh')
-rwxr-xr-x | tl-build.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tl-build.sh b/tl-build.sh index eda6bea..d81e41f 100755 --- a/tl-build.sh +++ b/tl-build.sh | |||
@@ -146,6 +146,13 @@ function include_asymptote { | |||
146 | fi | 146 | fi |
147 | } | 147 | } |
148 | 148 | ||
149 | function include_extras { | ||
150 | if [[ -d ${tl_sourcedir}/inst/bin ]];then | ||
151 | tl_bindir=${tl_sourcedir}/inst/bin/`ls ${tl_sourcedir}/inst/bin` | ||
152 | install -m 0755 ${this_dir}/mksymlinks ${tl_bindir}/mktexobsdsymlinks | ||
153 | fi | ||
154 | } | ||
155 | |||
149 | # Now build TL | 156 | # Now build TL |
150 | if [[ ${build_tl} == "y" ]]; then | 157 | if [[ ${build_tl} == "y" ]]; then |
151 | cd ${tl_sourcedir} | 158 | cd ${tl_sourcedir} |
@@ -157,6 +164,7 @@ if [[ ${build_tl} == "y" ]]; then | |||
157 | if [[ ${with_asymptote} == "y" ]];then | 164 | if [[ ${with_asymptote} == "y" ]];then |
158 | include_asymptote | 165 | include_asymptote |
159 | fi | 166 | fi |
167 | include_extras | ||
160 | else | 168 | else |
161 | if [[ ${with_context} == "y" ]]; then | 169 | if [[ ${with_context} == "y" ]]; then |
162 | include_context | 170 | include_context |