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