Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Restores the internal C headers that were missing from the nuget.org and
Microsoft Store packages.
7 changes: 1 addition & 6 deletions PC/layout/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,7 @@ def _c(d):

if ns.include_dev:

def _c(d):
if d.is_dir():
return d.name != "internal"
return True

for dest, src in rglob(ns.source / "Include", "**/*.h", _c):
for dest, src in rglob(ns.source / "Include", "**/*.h"):
yield "include/{}".format(dest), src
src = ns.source / "PC" / "pyconfig.h"
yield "include/pyconfig.h", src
Expand Down