aboutsummaryrefslogtreecommitdiff
path: root/ports/openxr-loader/0001-fix-embedded-python-path.patch
diff options
context:
space:
mode:
authorNicole Mazzuca <t-nimaz@microsoft.com>2019-07-19 12:17:22 -0700
committerNicole Mazzuca <t-nimaz@microsoft.com>2019-07-19 12:17:22 -0700
commitb3caf67749f21952e0157ba77ece755aa01b254a (patch)
treedff6a178b506fdc58e28bbc9094f1687eb99bd72 /ports/openxr-loader/0001-fix-embedded-python-path.patch
parentfddebb75da034752fb267ba121497ba58157bb79 (diff)
parent618fa203c13c30bd19826988cff66481bca0562f (diff)
downloadvcpkg-b3caf67749f21952e0157ba77ece755aa01b254a.tar.gz
vcpkg-b3caf67749f21952e0157ba77ece755aa01b254a.zip
Merge branch 'trunk' into parallel-file-ops
Diffstat (limited to 'ports/openxr-loader/0001-fix-embedded-python-path.patch')
-rw-r--r--ports/openxr-loader/0001-fix-embedded-python-path.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/ports/openxr-loader/0001-fix-embedded-python-path.patch b/ports/openxr-loader/0001-fix-embedded-python-path.patch
new file mode 100644
index 000000000..3fe7e61e8
--- /dev/null
+++ b/ports/openxr-loader/0001-fix-embedded-python-path.patch
@@ -0,0 +1,35 @@
+diff --git a/specification/scripts/genxr.py b/specification/scripts/genxr.py
+index 906c044..b0a414f 100755
+--- a/specification/scripts/genxr.py
++++ b/specification/scripts/genxr.py
+@@ -17,6 +17,12 @@
+ import argparse
+ import re
+ import sys
++import os
++
++base_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
++sys.path.append(os.path.join(base_dir, 'src', 'scripts'))
++sys.path.append(os.path.join(base_dir, 'specification', 'scripts'))
++
+ import time
+ import xml.etree.ElementTree as etree
+
+diff --git a/src/scripts/src_genxr.py b/src/scripts/src_genxr.py
+index 960b6cd..6f49296 100755
+--- a/src/scripts/src_genxr.py
++++ b/src/scripts/src_genxr.py
+@@ -14,7 +14,12 @@
+ # See the License for the specific language governing permissions and
+ # limitations under the License.
+
+-import argparse, cProfile, pdb, string, sys, time
++import argparse, cProfile, pdb, string, sys, time, os
++
++base_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
++sys.path.append(os.path.join(base_dir, 'src', 'scripts'))
++sys.path.append(os.path.join(base_dir, 'specification', 'scripts'))
++
+ from reg import *
+ from generator import write
+ from cgenerator import CGeneratorOptions, COutputGenerator