blob: c2edccc4bef6f6c7eca786e39ca2fdb23bc0d645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- xindy-2.4.orig/src/Makefile.am
+++ xindy-2.4/src/Makefile.am
@@ -41,7 +41,7 @@
DEFAULTS = defaults.xdy
DUMP_XINDY = dump-xindy.lsp
MEMFILE = xindy.mem
-CLISP = @CLISP@ -q -E iso-8859-1
+CLISP = @CLISP@ -q
xindy.mem: $(DEFAULTS) $(FAS) $(DUMP_XINDY)
rm -f $(MEMFILE)
--- xindy-2.4.orig/user-commands/xindy.in
+++ xindy-2.4/user-commands/xindy.in
@@ -777,7 +777,7 @@
sub call_xindy ( $$ ) {
my ($mem_file, $xindy_exp) = @_;
- my @command = ($clisp, '-M', $mem_file, '-E', 'iso-8859-1');
+ my @command = ($clisp, '-M', $mem_file);
if ( $interactive ) {
print "Proposed xindy expression:\n\n$xindy_exp\n" unless $quiet;
} else {
|