[Python-checkins] r57986 - in python/branches/release25-maint: Makefile.pre.in Misc/NEWS

matthias.klose python-checkins at python.org
Wed Sep 5 08:45:57 CEST 2007


Author: matthias.klose
Date: Wed Sep  5 08:45:57 2007
New Revision: 57986

Modified:
   python/branches/release25-maint/Makefile.pre.in
   python/branches/release25-maint/Misc/NEWS
Log:
- Makefile.pre.in(buildbottest): Run an optional script pybuildbot.identify
  to include some information about the build environment.


Modified: python/branches/release25-maint/Makefile.pre.in
==============================================================================
--- python/branches/release25-maint/Makefile.pre.in	(original)
+++ python/branches/release25-maint/Makefile.pre.in	Wed Sep  5 08:45:57 2007
@@ -597,7 +597,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/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Wed Sep  5 08:45:57 2007
@@ -133,6 +133,8 @@
 
 - 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?
 =============================


More information about the Python-checkins mailing list