[Python-checkins] cpython (3.2): Add a dummy "touch" target to the Makefile so that the custom buildbots can

georg.brandl python-checkins at python.org
Tue Sep 30 16:41:33 CEST 2014


https://hg.python.org/cpython/rev/89b2d5d0f23d
changeset:   92672:89b2d5d0f23d
branch:      3.2
user:        Georg Brandl <georg at python.org>
date:        Tue Sep 30 16:41:11 2014 +0200
summary:
  Add a dummy "touch" target to the Makefile so that the custom buildbots can test this branch.

files:
  Makefile.pre.in |  5 ++++-
  1 files changed, 4 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1371,6 +1371,9 @@
 
 Python/thread.o: @THREADHEADERS@
 
+# A dummy target so that we are "buildbot step compatible" with newer versions
+touch:
+
 # Declare targets that aren't real files
 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
@@ -1378,7 +1381,7 @@
 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
-.PHONY: smelly funny patchcheck altmaninstall
+.PHONY: smelly funny patchcheck altmaninstall touch
 .PHONY: gdbhooks
 
 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY

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


More information about the Python-checkins mailing list