[Python-checkins] cpython: Try to fix issue #15086: build failure on Ubuntu shared buildbot.

antoine.pitrou python-checkins at python.org
Sun Jun 17 00:30:51 CEST 2012


http://hg.python.org/cpython/rev/3680b3423aa3
changeset:   77473:3680b3423aa3
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sun Jun 17 00:27:30 2012 +0200
summary:
  Try to fix issue #15086: build failure on Ubuntu shared buildbot.

files:
  Makefile.pre.in    |    4 ++--
  Python/importlib.h |  Bin 
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -442,7 +442,7 @@
 	$(MAKE) all CFLAGS="$(CFLAGS) -fprofile-generate" LIBS="$(LIBS) -lgcov"
 
 run_profile_task:
-	./$(BUILDPYTHON) $(PROFILE_TASK)
+	$(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK)
 
 build_all_use_profile:
 	$(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use"
@@ -580,7 +580,7 @@
 
 Python/importlib.h: $(srcdir)/Lib/importlib/_bootstrap.py $(srcdir)/Python/freeze_importlib.py
 	@if test -f ./$(BUILDPYTHON); then \
-	    ./$(BUILDPYTHON) $(srcdir)/Python/freeze_importlib.py \
+	    $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Python/freeze_importlib.py \
 		$(srcdir)/Lib/importlib/_bootstrap.py Python/importlib.h; \
 	else \
 	    echo "----------------------------------------------------------"; \
diff --git a/Python/importlib.h b/Python/importlib.h
index 15d0ba4bbecf831fd80c35507509ed2721568f19..c9431e49e929cf16e5376c1c6b9e4ba09e891bda
GIT binary patch
[stripped]

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list