Merge after removal of incorrect RCL_3 drop RCL_3 PDK_3.0.2 PDK_3.0.3
authorandy simpson <andrews@symbian.org>
Thu, 02 Sep 2010 15:52:52 +0100
branchRCL_3
changeset 31 e818d2a017cc
parent 30 fcf0948c1bce (current diff)
parent 27 19f74a1096d4 (diff)
child 43 4bd2599cdfb5
Merge after removal of incorrect RCL_3 drop
--- a/gfxconversion/mifconv/src/mifconv_iconbinaryconverter.cpp	Wed Sep 01 12:20:07 2010 +0100
+++ b/gfxconversion/mifconv/src/mifconv_iconbinaryconverter.cpp	Thu Sep 02 15:52:52 2010 +0100
@@ -247,7 +247,7 @@
         // Build temp filename by replacing dir separator and ':' chars with '_':
         MifConvString tmpFileName(i->Filename());
         ConvertToBinaryFilename(tmpFileName);
-       
+
         // Copy source file to temp directory:
         MifConvString to(iTempDir + tmpFileName);        
         if( MifConvUtil::CopyFile(i->Filename(), to) == false )
@@ -259,9 +259,11 @@
         // enclosed with quotation marks. If the whole string is enclosed with quotation marks then it works...
         // For example: command '"\epoc32\tools\bmconv" "somefile"' does not work while command
         // '""\epoc32\tools\bmconv" "somefile""' does.
-               
+        cout << "Mifconvdebugging - executing" << MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str() << endl;
+
         if( system(MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str()) < 0 )
         {
+            cout << "Mifconvdebugging - failed to execute" << MifConvString("\""+extConverterCommand+"\""+to+"\"\"").c_str() << endl;
             int ernro = errno;  // The error number must check straight away before any next system command
             
             MifConvString errStr("Executing SVGTBINENCODE failed");