2014-09-04 19:53:40 +02:00
|
|
|
diff --git common.gypi common.gypi
|
2015-01-09 18:22:10 +01:00
|
|
|
index 83a3df6..a0a0b60 100644
|
2014-09-04 19:53:40 +02:00
|
|
|
--- common.gypi
|
|
|
|
+++ common.gypi
|
2012-04-03 03:34:16 +02:00
|
|
|
@@ -9,6 +9,9 @@
|
|
|
|
# Variables expected to be overriden on the GYP command line (-D) or by
|
|
|
|
# ~/.gyp/include.gypi.
|
|
|
|
'variables': {
|
|
|
|
+ # Directory for CEF source files. This will be set by cef.gypi.
|
|
|
|
+ 'cef_directory%' : '',
|
|
|
|
+
|
|
|
|
# Putting a variables dict inside another variables dict looks kind of
|
|
|
|
# weird. This is done so that 'host_arch', 'chromeos', etc are defined as
|
|
|
|
# variables within the outer variables dict here. This is necessary
|
2014-09-04 19:53:40 +02:00
|
|
|
diff --git mac/strip_save_dsym mac/strip_save_dsym
|
|
|
|
index c9cf226..0dedbe3 100755
|
|
|
|
--- mac/strip_save_dsym
|
|
|
|
+++ mac/strip_save_dsym
|
|
|
|
@@ -48,7 +48,7 @@ def macho_archs(macho):
|
|
|
|
"bundle"]
|
|
|
|
macho_types_re = "Mach-O (?:64-bit )?(?:" + "|".join(macho_types) + ")"
|
|
|
|
|
|
|
|
- file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "--", macho],
|
|
|
|
+ file_cmd = subprocess.Popen(["/usr/bin/file", "-b", "-L", "--", macho],
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
|
|
|
|
archs = []
|