Mailinglist Archive: yast-commit (545 mails)
| < Previous | Next > |
[yast-commit] r60334 - in /trunk/yast2: library/gpg/src/GPG.ycp package/yast2.changes
- From: lslezak@xxxxxxxxxxxxxxxx
- Date: Tue, 12 Jan 2010 12:42:07 -0000
- Message-id: <E1NUg4V-0000YN-BC@xxxxxxxxxxxxxxxx>
Author: lslezak
Date: Tue Jan 12 13:42:06 2010
New Revision: 60334
URL: http://svn.opensuse.org/viewcvs/yast?rev=60334&view=rev
Log:
- GPG.ycp - run gpg in C locale (bnc#544680)
Modified:
trunk/yast2/library/gpg/src/GPG.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/gpg/src/GPG.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/gpg/src/GPG.ycp?rev=60334&r1=60333&r2=60334&view=diff
==============================================================================
--- trunk/yast2/library/gpg/src/GPG.ycp (original)
+++ trunk/yast2/library/gpg/src/GPG.ycp Tue Jan 12 13:42:06 2010
@@ -67,7 +67,7 @@
map callGPG(string options)
{
map ret = $[];
- string command = buildGPGcommand(options);
+ string command = "LC_ALL=C " + buildGPGcommand(options);
ret = (map) SCR::Execute(.target.bash_output, command);
@@ -258,7 +258,7 @@
}
// in Qt start GPG in a xterm window
- SCR::Execute(.target.bash, xterm + " -e " + command);
+ SCR::Execute(.target.bash, "LC_ALL=C " + xterm + " -e " + command);
}
else
{
Modified: trunk/yast2/package/yast2.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=60334&r1=60333&r2=60334&view=diff
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Tue Jan 12 13:42:06 2010
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Tue Jan 12 11:15:45 UTC 2010 - lslezak@xxxxxxx
+
+- GPG.ycp - run gpg in C locale (bnc#544680)
+
+-------------------------------------------------------------------
Thu Jan 7 14:26:21 CET 2010 - jsrain@xxxxxxx
- updated start-up script to behave correctly if QT CC is to be
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Tue Jan 12 13:42:06 2010
New Revision: 60334
URL: http://svn.opensuse.org/viewcvs/yast?rev=60334&view=rev
Log:
- GPG.ycp - run gpg in C locale (bnc#544680)
Modified:
trunk/yast2/library/gpg/src/GPG.ycp
trunk/yast2/package/yast2.changes
Modified: trunk/yast2/library/gpg/src/GPG.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/library/gpg/src/GPG.ycp?rev=60334&r1=60333&r2=60334&view=diff
==============================================================================
--- trunk/yast2/library/gpg/src/GPG.ycp (original)
+++ trunk/yast2/library/gpg/src/GPG.ycp Tue Jan 12 13:42:06 2010
@@ -67,7 +67,7 @@
map callGPG(string options)
{
map ret = $[];
- string command = buildGPGcommand(options);
+ string command = "LC_ALL=C " + buildGPGcommand(options);
ret = (map) SCR::Execute(.target.bash_output, command);
@@ -258,7 +258,7 @@
}
// in Qt start GPG in a xterm window
- SCR::Execute(.target.bash, xterm + " -e " + command);
+ SCR::Execute(.target.bash, "LC_ALL=C " + xterm + " -e " + command);
}
else
{
Modified: trunk/yast2/package/yast2.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/yast2/package/yast2.changes?rev=60334&r1=60333&r2=60334&view=diff
==============================================================================
--- trunk/yast2/package/yast2.changes (original)
+++ trunk/yast2/package/yast2.changes Tue Jan 12 13:42:06 2010
@@ -1,4 +1,9 @@
-------------------------------------------------------------------
+Tue Jan 12 11:15:45 UTC 2010 - lslezak@xxxxxxx
+
+- GPG.ycp - run gpg in C locale (bnc#544680)
+
+-------------------------------------------------------------------
Thu Jan 7 14:26:21 CET 2010 - jsrain@xxxxxxx
- updated start-up script to behave correctly if QT CC is to be
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |