From: Matthias Klose Date: Tue, 4 Sep 2007 18:17:36 +0000 (+0000) Subject: - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify X-Git-Tag: v2.6a1~1348 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=642ac8530ac9ec26ab81dc7e9d747d27d7a1f160;p=python - Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify to include some information about the build environment. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index e2082d96f4..4e5644d5c3 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -601,7 +601,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 d99e7bcdfd..6cfd4fd171 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -996,6 +996,9 @@ 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. + C API -----