mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
Use an alt script to properly determine the OSX SDK version
This commit is contained in:
parent
a1a1d76e6f
commit
91d2c4c05a
3 changed files with 48 additions and 1 deletions
12
media/libyuv/build/mac/find_sdk_uxp.py
Normal file
12
media/libyuv/build/mac/find_sdk_uxp.py
Normal file
|
|
@ -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())
|
||||
Loading…
Add table
Add a link
Reference in a new issue