From 5cb86a246164c52176b398be481ab641fab97e1e Mon Sep 17 00:00:00 2001 From: Matthias Klose Date: Wed, 5 Sep 2007 06:45:57 +0000 Subject: [PATCH] - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify to include some information about the build environment. --- Makefile.pre.in | 4 ++++ Misc/NEWS | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Makefile.pre.in b/Makefile.pre.in index 0e4baad101e..d2250bb1676 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -597,7 +597,11 @@ testuniversal: all platform # Like testall, but with a single pass only +# run an optional script to include some information about the build environment buildbottest: all platform + -@if which pybuildbot.identify >/dev/null 2>&1; then \ + pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \ + fi $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \ diff --git a/Misc/NEWS b/Misc/NEWS index 9f4a22866fa..d397a5c15b7 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -133,6 +133,8 @@ Build - Allow Emacs 22 for building the documentation in info format. +- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify + to include some information about the build environment. What's New in Python 2.5.1? =============================