summaryrefslogtreecommitdiffstats
path: root/PC/layout/main.py
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2019-01-22 20:31:30 (GMT)
committerGitHub <noreply@github.com>2019-01-22 20:31:30 (GMT)
commit128efcade63480b5860a6d045a41ba4abf5eea2f (patch)
treefc995aa8061eb4a2e426f84985284bfe6092052a /PC/layout/main.py
parentf71e7433ebccb2e3a2665b93bb84de38f9c581c8 (diff)
downloadcpython-128efcade63480b5860a6d045a41ba4abf5eea2f.zip
cpython-128efcade63480b5860a6d045a41ba4abf5eea2f.tar.gz
cpython-128efcade63480b5860a6d045a41ba4abf5eea2f.tar.bz2
bpo-35683: Improve Azure Pipelines steps (GH-11493)
Diffstat (limited to 'PC/layout/main.py')
-rw-r--r--PC/layout/main.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/layout/main.py b/PC/layout/main.py
index d372fe5..910085c 100644
--- a/PC/layout/main.py
+++ b/PC/layout/main.py
@@ -156,6 +156,8 @@ def get_layout(ns):
for dest, src in rglob(ns.build, "vcruntime*.dll"):
yield dest, src
+ yield "LICENSE.txt", ns.source / "LICENSE"
+
for dest, src in rglob(ns.build, ("*.pyd", "*.dll")):
if src.stem.endswith("_d") != bool(ns.debug) and src not in REQUIRED_DLLS:
continue