3262b1
diff -up mozilla-release-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175/python/mozbuild/mozbuild/mozconfig.py.mozconfig-fix mozilla-release-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175/python/mozbuild/mozbuild/mozconfig.py
3262b1
--- mozilla-release-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175/python/mozbuild/mozbuild/mozconfig.py.mozconfig-fix	2018-03-13 17:22:19.018466884 +0100
3262b1
+++ mozilla-release-c61f5f5ead48c78a80c80db5c489bdc7cfaf8175/python/mozbuild/mozbuild/mozconfig.py	2018-03-13 17:23:57.379559640 +0100
3262b1
@@ -446,7 +446,7 @@ class MozconfigLoader(object):
3262b1
                             value = value[1:]
3262b1
 
3262b1
                         # Lines with a quote not ending in a quote are multi-line.
3262b1
-                        if has_quote and not value.endswith("'"):
3262b1
+                        if has_quote and not value.endswith(("'", ";")):
3262b1
                             in_variable = name
3262b1
                             current.append(value)
3262b1
                             continue