This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner, zach.ware
Date 2017-06-26.09:56:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1498471008.07.0.0313108561711.issue30259@psf.upfronthosting.co.za>
In-reply-to
Content
make -j4
      make -j4 regen-all clinic
      changes=`git status --porcelain`
      if ! test -z "$changes"
      then
        echo "Generated files not up to date"
        echo "$changes"
        exit 1
      fi

I understand that we build the whole Python, and only later check if generated files are up to date.

Why not checking if generated files are up to date *before* compiling Python?
History
Date User Action Args
2017-06-26 09:56:48vstinnersetrecipients: + vstinner, zach.ware
2017-06-26 09:56:48vstinnersetmessageid: <1498471008.07.0.0313108561711.issue30259@psf.upfronthosting.co.za>
2017-06-26 09:56:48vstinnerlinkissue30259 messages
2017-06-26 09:56:47vstinnercreate