You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
440 B
13 lines
440 B
diff -rupN libffado-2.3.0.org/SConstruct libffado-2.3.0/SConstruct
|
|
--- libffado-2.3.0.org/SConstruct 2016-08-08 06:31:03.000000000 -0400
|
|
+++ libffado-2.3.0/SConstruct 2017-08-10 21:56:15.358412952 -0400
|
|
@@ -558,7 +558,7 @@ def cpuinfo_kv():
|
|
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()
|
|
|