mirror of
https://github.com/python/cpython.git
synced 2025-09-29 03:35:31 +00:00
If Setup is older than Setup.in, issue a bold warning that the Setup may
need to be checked to make sure all the latest information is present. This closes SourceForge patch #101275.
This commit is contained in:
parent
0cf8cdea30
commit
a54436fbdb
1 changed files with 11 additions and 2 deletions
|
@ -160,8 +160,17 @@ hassignal:
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
|
||||||
Setup:
|
Setup: $(srcdir)/Setup.in
|
||||||
cp $(srcdir)/Setup.in Setup
|
@if [ -f Setup ] ; then \
|
||||||
|
echo; \
|
||||||
|
echo "-------------------------------------------"; \
|
||||||
|
echo "$(srcdir)/Setup.in is newer than Setup;"; \
|
||||||
|
echo "check to make sure you have all the updates"; \
|
||||||
|
echo "you need in your Setup file."; \
|
||||||
|
echo "-------------------------------------------"; \
|
||||||
|
echo; \
|
||||||
|
else (set -x; cp $(srcdir)/Setup.in Setup); fi
|
||||||
|
|
||||||
|
|
||||||
Setup.local:
|
Setup.local:
|
||||||
echo "# Edit this file for local setup changes" >Setup.local
|
echo "# Edit this file for local setup changes" >Setup.local
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue