[Python-checkins] r57972 - in python/trunk: Makefile.pre.in Misc/NEWS
matthias.klose
python-checkins at python.org
Tue Sep 4 20:17:36 CEST 2007
Author: matthias.klose
Date: Tue Sep 4 20:17:36 2007
New Revision: 57972
Modified:
python/trunk/Makefile.pre.in
python/trunk/Misc/NEWS
Log:
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
to include some information about the build environment.
Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in (original)
+++ python/trunk/Makefile.pre.in Tue Sep 4 20:17:36 2007
@@ -601,7 +601,11 @@
# Like testall, but with a single pass only
+# run an optional script to include some information about the build environment
buildbottest: all platform
+ - at 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 \
Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS (original)
+++ python/trunk/Misc/NEWS Tue Sep 4 20:17:36 2007
@@ -996,6 +996,9 @@
- 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
-----
More information about the Python-checkins
mailing list