summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1242132
diff options
context:
space:
mode:
Diffstat (limited to 'www/firefox/files/patch-bug1242132')
-rw-r--r--www/firefox/files/patch-bug124213213
1 files changed, 13 insertions, 0 deletions
diff --git a/www/firefox/files/patch-bug1242132 b/www/firefox/files/patch-bug1242132
new file mode 100644
index 000000000000..2a228cd466a1
--- /dev/null
+++ b/www/firefox/files/patch-bug1242132
@@ -0,0 +1,13 @@
+# nss-config --cflags returns multiple flags, don't treat them as one string
+
+--- python/mozbuild/mozbuild/frontend/gyp_reader.py~
++++ 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.