summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-16 22:27:30 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-16 22:27:30 (GMT)
commit2d9db1dfceeb4e9b2c9572bd1abdbc3bc2b663e5 (patch)
treebfbc96c1d9979dd9f90e5ff581c0d72a15c9ea71 /Makefile.pre.in
parent7e19337ebcc3f1aa0e9697c06d5f778c7b60f588 (diff)
downloadcpython-2d9db1dfceeb4e9b2c9572bd1abdbc3bc2b663e5.zip
cpython-2d9db1dfceeb4e9b2c9572bd1abdbc3bc2b663e5.tar.gz
cpython-2d9db1dfceeb4e9b2c9572bd1abdbc3bc2b663e5.tar.bz2
Try to fix issue #15086: build failure on Ubuntu shared buildbot.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 5c56c03..4f18994 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -442,7 +442,7 @@ build_all_generate_profile:
$(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 @@ Modules/_testembed: Modules/_testembed.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY)
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 "----------------------------------------------------------"; \