Author: sebor
Date: Tue Aug 29 17:22:35 2006
New Revision: 438309
URL: http://svn.apache.org/viewvc?rev=438309&view=rev
Log:
2006-08-29 Andrew Black <[EMAIL PROTECTED]>
Farid Zaripov <[EMAIL PROTECTED]>
* run_locale_utils.sh (test_locale): Corrected generation
of the locale src file name (replaced '@' with '.').
Modified:
incubator/stdcxx/trunk/etc/config/run_locale_utils.sh
Modified: incubator/stdcxx/trunk/etc/config/run_locale_utils.sh
URL:
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/etc/config/run_locale_utils.sh?rev=438309&r1=438308&r2=438309&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/run_locale_utils.sh (original)
+++ incubator/stdcxx/trunk/etc/config/run_locale_utils.sh Tue Aug 29 17:22:35
2006
@@ -232,7 +232,8 @@
# get locale's name and encoding
locale_src=`echo $3 | \
- sed -n "s:\([^\.]*\)\.\([EMAIL
PROTECTED])\(.*\):\1\3:p;s:[EMAIL PROTECTED]::g"`;
+ sed -n "s:\([^\.]*\)\.\([EMAIL PROTECTED])\(.*\):\1\3:;\
+ s:[EMAIL PROTECTED]::;y:@:.:;p"`;
locale_encoding=`echo $3 | \
sed -n "s:\([^\.]*\)\.\([EMAIL PROTECTED])\(.*\):\2:p"`;