diff options
author | Matthias Klose <doko@ubuntu.com> | 2007-09-05 06:45:57 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2007-09-05 06:45:57 (GMT) |
commit | 5cb86a246164c52176b398be481ab641fab97e1e (patch) | |
tree | e812cf57dd4d0da054207904800440587826af0e | |
parent | 7303f7055ef7ed08fadc8dbeb93f102faf16f217 (diff) | |
download | cpython-5cb86a246164c52176b398be481ab641fab97e1e.zip cpython-5cb86a246164c52176b398be481ab641fab97e1e.tar.gz cpython-5cb86a246164c52176b398be481ab641fab97e1e.tar.bz2 |
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
to include some information about the build environment.
-rw-r--r-- | Makefile.pre.in | 4 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 0e4baad..d2250bb 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 \ @@ -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? ============================= |