Commit a54436fb authored by Fred Drake's avatar Fred Drake

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.
parent 0cf8cdea
......@@ -160,8 +160,17 @@ hassignal:
fi; \
done
Setup:
cp $(srcdir)/Setup.in Setup
Setup: $(srcdir)/Setup.in
@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:
echo "# Edit this file for local setup changes" >Setup.local
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment