diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-18 18:07:25 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-04-18 18:07:25 +0000 |
commit | 1caa0e57d323fd3e689be724205b1f15ea51beff (patch) | |
tree | c01ea995d5952a84957671756db4798d94e357a5 /media-sound/cdparanoia/files | |
parent | Stable on x86, see bug #130299. Changed DEPEND for modular X. (diff) | |
download | gentoo-2-1caa0e57d323fd3e689be724205b1f15ea51beff.tar.gz gentoo-2-1caa0e57d323fd3e689be724205b1f15ea51beff.tar.bz2 gentoo-2-1caa0e57d323fd3e689be724205b1f15ea51beff.zip |
Add patch to fix et_EE locale, thanks to J in bug #121526.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'media-sound/cdparanoia/files')
-rw-r--r-- | media-sound/cdparanoia/files/flex-configure-LANG.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-sound/cdparanoia/files/flex-configure-LANG.patch b/media-sound/cdparanoia/files/flex-configure-LANG.patch new file mode 100644 index 000000000000..3ef76ef911c0 --- /dev/null +++ b/media-sound/cdparanoia/files/flex-configure-LANG.patch @@ -0,0 +1,41 @@ +The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in +option parsing, it may break. + +http://bugs.gentoo.org/103483 + +--- configure ++++ configure +@@ -54,6 +54,16 @@ + infodir='${prefix}/info' + mandir='${prefix}/man' + ++# NLS nuisances. ++# Only set these to C if already set. These must not be set unconditionally ++# because not all systems understand e.g. LANG=C (notably SCO). ++# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! ++# Non-C LC_CTYPE values break the ctype check. ++if test "${LANG+set}" = set; then LANG=C; export LANG; fi ++if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi ++if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi ++if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi ++ + # Initialize some other variables. + subdirs= + MFLAGS= MAKEFLAGS= +@@ -452,16 +463,6 @@ + esac + done + +-# NLS nuisances. +-# Only set these to C if already set. These must not be set unconditionally +-# because not all systems understand e.g. LANG=C (notably SCO). +-# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! +-# Non-C LC_CTYPE values break the ctype check. +-if test "${LANG+set}" = set; then LANG=C; export LANG; fi +-if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi +-if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi +-if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi +- + # confdefs.h avoids OS command line length limits that DEFS can exceed. + rm -rf conftest* confdefs.h + # AIX cpp loses on an empty file, so make sure it contains at least a newline. |