diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-13 08:47:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-13 08:47:33 +0000 |
commit | 36e0b0b984b5dcc6b86b57facbddc2d9598ec2a8 (patch) | |
tree | 29d6ec735d6785601b7630d754555fcff6e2ce70 /sys-apps/sed/files | |
parent | Patch fixes #84030 (missing type declarations) (diff) | |
download | historical-36e0b0b984b5dcc6b86b57facbddc2d9598ec2a8.tar.gz historical-36e0b0b984b5dcc6b86b57facbddc2d9598ec2a8.tar.bz2 historical-36e0b0b984b5dcc6b86b57facbddc2d9598ec2a8.zip |
make sure we run makeinfo in the C locale #83984 by Stanley
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'sys-apps/sed/files')
-rw-r--r-- | sys-apps/sed/files/sed-4.1.4-makeinfo-c-locale.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys-apps/sed/files/sed-4.1.4-makeinfo-c-locale.patch b/sys-apps/sed/files/sed-4.1.4-makeinfo-c-locale.patch new file mode 100644 index 000000000000..ede6dc8e30bf --- /dev/null +++ b/sys-apps/sed/files/sed-4.1.4-makeinfo-c-locale.patch @@ -0,0 +1,18 @@ +Running makeinfo on sed.texi in some locales can cause +problems (probably due to range matching not being the +same). So we force the C locale and just take the lazy +way out. + +http://bugs.gentoo.org/show_bug.cgi?id=83984 + +--- doc/Makefile.in ++++ doc/Makefile.in +@@ -615,7 +615,7 @@ + + @MAKEINFO_HTML_TRUE@sed.html: sed.texi sed.info + @MAKEINFO_HTML_TRUE@ builddir=`pwd` && cd $(srcdir) && \ +-@MAKEINFO_HTML_TRUE@ $(MAKEINFO) --html --no-split -o $$builddir/sed.html sed.texi ++@MAKEINFO_HTML_TRUE@ LC_ALL="C" $(MAKEINFO) --html --no-split -o $$builddir/sed.html sed.texi + + @MAKEINFO_HTML_TRUE@html: sed.html + |