summaryrefslogtreecommitdiffstats
path: root/media/libyuv/build/mac
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-07-31 20:27:48 -0400
committerMoonchild <moonchild@palemoon.org>2020-08-07 21:27:03 +0000
commitd419fe2d52790b039c0316059c6e9e56f39407ce (patch)
treefaa7bb8a2627254066216e62dd94009b0d88a2a2 /media/libyuv/build/mac
parentc77c6de9ce177787192e6fc1af1d017f92603069 (diff)
downloadUXP-d419fe2d52790b039c0316059c6e9e56f39407ce.tar
UXP-d419fe2d52790b039c0316059c6e9e56f39407ce.tar.gz
UXP-d419fe2d52790b039c0316059c6e9e56f39407ce.tar.lz
UXP-d419fe2d52790b039c0316059c6e9e56f39407ce.tar.xz
UXP-d419fe2d52790b039c0316059c6e9e56f39407ce.zip
Use an alt script to properly determine the OSX SDK version
Diffstat (limited to 'media/libyuv/build/mac')
-rw-r--r--media/libyuv/build/mac/find_sdk_uxp.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/media/libyuv/build/mac/find_sdk_uxp.py b/media/libyuv/build/mac/find_sdk_uxp.py
new file mode 100644
index 000000000..b81dba947
--- /dev/null
+++ b/media/libyuv/build/mac/find_sdk_uxp.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+import sys
+import subprocess
+
+def main():
+ return subprocess.call([sys.executable, "../webrtc/trunk/build/mac/find_sdk_uxp.py"] + sys.argv[1:])
+
+if __name__ == '__main__':
+ sys.exit(main())