diff options
author | Itamar Oren <itamarost@gmail.com> | 2023-12-18 17:04:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 17:04:40 (GMT) |
commit | 2feec0fc7fd0b9caae7ab2e26e69311d3ed93e77 (patch) | |
tree | ae7f983860097c1e00598ac021a9b446a8c3e00f /Modules/getpath.c | |
parent | d00dbf541525fcb36c9c6ebb7b41a5637c5aa6c0 (diff) | |
download | cpython-2feec0fc7fd0b9caae7ab2e26e69311d3ed93e77.zip cpython-2feec0fc7fd0b9caae7ab2e26e69311d3ed93e77.tar.gz cpython-2feec0fc7fd0b9caae7ab2e26e69311d3ed93e77.tar.bz2 |
gh-113039: Avoid using leading dots in the include path for frozen getpath.py (GH-113022)
Diffstat (limited to 'Modules/getpath.c')
-rw-r--r-- | Modules/getpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index afa9273..a3c8fc2 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -22,7 +22,7 @@ #endif /* Reference the precompiled getpath.py */ -#include "../Python/frozen_modules/getpath.h" +#include "Python/frozen_modules/getpath.h" #if (!defined(PREFIX) || !defined(EXEC_PREFIX) \ || !defined(VERSION) || !defined(VPATH) \ |