summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/buildhistory.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index 4db0441993..a8653f9fd7 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -80,7 +80,7 @@ python buildhistory_emit_pkghistory() {
80 pkginfo = PackageInfo(pkg) 80 pkginfo = PackageInfo(pkg)
81 with open(histfile, "r") as f: 81 with open(histfile, "r") as f:
82 for line in f: 82 for line in f:
83 lns = line.split('=') 83 lns = line.split('=', 1)
84 name = lns[0].strip() 84 name = lns[0].strip()
85 value = lns[1].strip(" \t\r\n").strip('"') 85 value = lns[1].strip(" \t\r\n").strip('"')
86 if name == "PE": 86 if name == "PE":