diff options
3 files changed, 21 insertions, 0 deletions
diff --git a/Build/source/utils/xindy/xindy-2.5.1-PATCHES/ChangeLog b/Build/source/utils/xindy/xindy-2.5.1-PATCHES/ChangeLog index c38e3221d49..9bb95afe6ec 100644 --- a/Build/source/utils/xindy/xindy-2.5.1-PATCHES/ChangeLog +++ b/Build/source/utils/xindy/xindy-2.5.1-PATCHES/ChangeLog @@ -1,3 +1,8 @@ +2014-10-24 Peter Breitenlohner <peb@mppmu.mpg.de> + + * patch-01-xindy-needs-language (new): It seems xindy requires + that language is set, patch from Akira. + 2014-09-15 Peter Breitenlohner <peb@mppmu.mpg.de> Imported xindy-2.5.1 source tree from diff --git a/Build/source/utils/xindy/xindy-2.5.1-PATCHES/patch-01-xindy-needs-language b/Build/source/utils/xindy/xindy-2.5.1-PATCHES/patch-01-xindy-needs-language new file mode 100644 index 00000000000..8ce59c764a0 --- /dev/null +++ b/Build/source/utils/xindy/xindy-2.5.1-PATCHES/patch-01-xindy-needs-language @@ -0,0 +1,13 @@ +diff -ur -N -x Makefile.in -x autom4te.cache xindy-2.5.1.orig/user-commands/xindy.in xindy-2.5.1/user-commands/xindy.in +--- xindy-2.5.1.orig/user-commands/xindy.in 2014-05-11 15:45:44.000000000 +0200 ++++ xindy-2.5.1/user-commands/xindy.in 2014-10-24 10:38:47.000000000 +0200 +@@ -732,6 +732,9 @@ + # + # FIXME: I didn't see all languages. What's on with gypsy and + # hausa? ++ if ( !$language ) { ++ $language = "general"; ++ } + if ( $language ) { + # If there is no language directory, this might be a variant. + # Language names and variants are separated by hyphens. The diff --git a/Build/source/utils/xindy/xindy-2.5.1/user-commands/xindy.in b/Build/source/utils/xindy/xindy-2.5.1/user-commands/xindy.in index 452725a827e..a1e06097414 100644 --- a/Build/source/utils/xindy/xindy-2.5.1/user-commands/xindy.in +++ b/Build/source/utils/xindy/xindy-2.5.1/user-commands/xindy.in @@ -732,6 +732,9 @@ sub xindy_expression () { # # FIXME: I didn't see all languages. What's on with gypsy and # hausa? + if ( !$language ) { + $language = "general"; + } if ( $language ) { # If there is no language directory, this might be a variant. # Language names and variants are separated by hyphens. The |