diff options
author | Christian Heimes <christian@python.org> | 2022-08-26 10:31:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-26 10:31:58 (GMT) |
commit | 8c1dbad36f44f332dadd9d08c8ffe3da7f6a20a6 (patch) | |
tree | 2c98c2ba5b74a15911454543a03d213373e701ad /Modules/makesetup | |
parent | 0319cd6825f3c247a875c91493a38992fb33a5b3 (diff) | |
download | cpython-8c1dbad36f44f332dadd9d08c8ffe3da7f6a20a6.zip cpython-8c1dbad36f44f332dadd9d08c8ffe3da7f6a20a6.tar.gz cpython-8c1dbad36f44f332dadd9d08c8ffe3da7f6a20a6.tar.bz2 |
gh-96269: Fix build dependency on AIX (GH-96304)
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-x | Modules/makesetup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/makesetup b/Modules/makesetup index 0830381..5c275ac 100755 --- a/Modules/makesetup +++ b/Modules/makesetup @@ -267,7 +267,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' | cc="$cc $cpps \$(PY_BUILTIN_MODULE_CFLAGS)";; esac # force rebuild when header file or module build flavor (static/shared) is changed - rule="$obj: $src \$(MODULE_${mods_upper}_DEPS) \$(PYTHON_HEADERS) Modules/config.c; $cc -c $src -o $obj" + rule="$obj: $src \$(MODULE_${mods_upper}_DEPS) \$(MODULE_DEPS); $cc -c $src -o $obj" echo "$rule" >>$rulesf done case $doconfig in |