diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-03-14 23:26:26 +0100 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-03-14 23:26:26 +0100 |
commit | 26ad995ceb07059947008f0a5bfda639a0c7e3ba (patch) | |
tree | 187084b66fe014797ffb7f22e6578c06c969a528 /Tools/scripts/patchcheck.py | |
parent | f22568563ba75b2fe94530f7e0618783a2a77d48 (diff) | |
parent | 5ce31cc4fc9737ae9ddfe34c7c91297ffe74844a (diff) | |
download | cpython-git-26ad995ceb07059947008f0a5bfda639a0c7e3ba.tar.gz |
merge heads
Diffstat (limited to 'Tools/scripts/patchcheck.py')
-rwxr-xr-x | Tools/scripts/patchcheck.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py index 0ca712ad31..503c67a027 100755 --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -135,7 +135,7 @@ def reported_news(file_paths): @status("configure regenerated", modal=True, info=str) def regenerated_configure(file_paths): """Check if configure has been regenerated.""" - if 'configure.in' in file_paths: + if 'configure.ac' in file_paths: return "yes" if 'configure' in file_paths else "no" else: return "not needed" @@ -143,7 +143,7 @@ def regenerated_configure(file_paths): @status("pyconfig.h.in regenerated", modal=True, info=str) def regenerated_pyconfig_h_in(file_paths): """Check if pyconfig.h.in has been regenerated.""" - if 'configure.in' in file_paths: + if 'configure.ac' in file_paths: return "yes" if 'pyconfig.h.in' in file_paths else "no" else: return "not needed" |