The output of /proc/cpuinfo on MIPS was not as this program expected.

I'm uploading a patch that fixes the parsing of the output
diff -Nur libffado-2.2.1/SConstruct libffado-2.2.1.mine/SConstruct
--- libffado-2.2.1/SConstruct	2014-06-02 00:01:27.000000000 +0000
+++ libffado-2.2.1.mine/SConstruct	2014-06-09 17:16:30.038566814 +0000
@@ -514,7 +514,7 @@
     for line in f:
         line = line.strip()
         if line:
-            k,v = line.split(':')
+            k,v = line.split(':', 1)
             yield (k.strip(), v.strip())
     f.close()
 

Attachment: signature.asc
Description: Digital signature



Reply via email to