opnsense-ports/mail/thunderbird/files/patch-bug1242132
Franco Fichtner 35a592193c */*: sync with upstream
Taken from: FreeBSD
2016-04-13 02:35:53 +02:00

13 lines
764 B
Text

# nss-config --cflags returns multiple flags, don't treat them as one string
--- mozilla/python/mozbuild/mozbuild/frontend/gyp_reader.py~
+++ mozilla/python/mozbuild/mozbuild/frontend/gyp_reader.py
@@ -217,7 +217,7 @@ def read_from_gyp(config, path, output,
# We may be getting make variable references out of the
# gyp data, and we don't want those in emitted data, so
# substitute them with their actual value.
- f = expand_variables(f, config.substs)
+ f = expand_variables(f, config.substs).split()
if not f:
continue
# the result may be a string or a list.