mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
4aedc13abe
* [xcb-cursor] add port * [xcb-errors] add port * [xcb-image] add port * [xcb-keysyms] add port * [xcb-util] add port * [xcb-wm] add port * v db * remove xcb-cursor * Apply CR Co-authored-by: Billy O'Neal <bion@microsoft.com> * update ports to new version * v db * fix v db * add missing DESTINATION parameter * v db * rename xcb-errors and xcb-wm * v db * only apply the patch on windows * v db Co-authored-by: Billy O'Neal <bion@microsoft.com>
21 lines
487 B
Diff
21 lines
487 B
Diff
diff --git a/src/extensions.py b/src/extensions.py
|
|
index 94d7d57fe..022d4003e 100644
|
|
--- a/src/extensions.py
|
|
+++ b/src/extensions.py
|
|
@@ -1,5 +1,6 @@
|
|
#!/usr/bin/env python
|
|
import sys
|
|
+import glob
|
|
from xml.etree.cElementTree import parse
|
|
|
|
class Module(object):
|
|
@@ -83,7 +84,7 @@ def parseFile(filename):
|
|
|
|
# Parse the xml file
|
|
output_file = sys.argv[1]
|
|
-for input_file in sys.argv[2:]:
|
|
+for input_file in glob.glob(sys.argv[2]):
|
|
parseFile(input_file)
|
|
|
|
assert xproto != None
|