Commit e90749f 1 parent 9744fd9 commit e90749f Copy full SHA for e90749f
File tree 5 files changed +23
-9
lines changed
texk/texlive/linked_scripts
5 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ texmf_other_scripts = \
111
111
authorindex/authorindex \
112
112
bib2gls/bib2gls.sh \
113
113
bib2gls/convertgls2bib.sh \
114
+ bib2gls/datatool2bib.sh \
114
115
bibcop/bibcop.pl \
115
116
bibtexperllibs/ltx2unitxt \
116
117
bookshelf/bookshelf-listallfonts \
Original file line number Diff line number Diff line change @@ -331,6 +331,7 @@ texmf_other_scripts = \
331
331
authorindex/authorindex \
332
332
bib2gls/bib2gls.sh \
333
333
bib2gls/convertgls2bib.sh \
334
+ bib2gls/datatool2bib.sh \
334
335
bibcop/bibcop.pl \
335
336
bibtexperllibs/ltx2unitxt \
336
337
bookshelf/bookshelf-listallfonts \
@@ -510,7 +511,10 @@ bin_links = \
510
511
relpath = $(SHELL ) $(top_srcdir ) /../../build-aux/relpath
511
512
runscript = $(top_srcdir ) /$(WIN_WRAPPER ) /runscript.exe
512
513
513
- # Make a copy of all targets and link names, for distros etc.
514
+ # Make a copy of all targets and link names, for distros etc., so they
515
+ # don't have to duplicate the special cases for memoize* etc. below. It
516
+ # would be cleaner to make the file and then use it in both the install
517
+ # and uninstall hooks, but we'll leave that for another time.
514
518
linkfile = $(abs_builddir ) /scripts-targets.lst
515
519
516
520
#
Original file line number Diff line number Diff line change @@ -12,11 +12,4 @@ if echo "$kernel" | grep CYGWIN >/dev/null; then
12
12
jarpath=` cygpath -w " $jarpath " `
13
13
fi
14
14
15
- # User may have globally set their locale provider preference in
16
- # $JAVA_TOOL_OPTIONS so don't override it.
17
-
18
- if [ -z " $JAVA_TOOL_OPTIONS " ]; then
19
- exec java -Djava.locale.providers=CLDR,JRE,SPI -jar " $jarpath " " $@ "
20
- else
21
- exec java -jar " $jarpath " " $@ "
22
- fi
15
+ exec java -jar " $jarpath " " $@ "
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ # Adapted from tlcockpit.sh to ensure the script works with cygwin
3
+
4
+ scriptname=` basename " $0 " .sh`
5
+ jar=" $scriptname .jar"
6
+ jarpath=` kpsewhich --progname=" $scriptname " --format=texmfscripts " $jar " `
7
+
8
+ kernel=` uname -s 2> /dev/null`
9
+ if echo " $kernel " | grep CYGWIN > /dev/null; then
10
+ CYGWIN_ROOT=` cygpath -w /`
11
+ export CYGWIN_ROOT
12
+ jarpath=` cygpath -w " $jarpath " `
13
+ fi
14
+
15
+ exec java -jar " $jarpath " " $@ "
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ attachfile2/pdfatfi.pl
52
52
authorindex/authorindex
53
53
bib2gls/bib2gls.sh
54
54
bib2gls/convertgls2bib.sh
55
+ bib2gls/datatool2bib.sh
55
56
bibcop/bibcop.pl
56
57
bibtexperllibs/ltx2unitxt
57
58
bookshelf/bookshelf-listallfonts
You can’t perform that action at this time.
0 commit comments