diff options
author | Georg Brandl <georg@python.org> | 2014-09-30 14:41:11 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-30 14:41:11 (GMT) |
commit | 4615076471404c5e586d90a68ef2f26fc2201c84 (patch) | |
tree | 06dbea915066a3862598d84b5ac34d143dc9155a | |
parent | 786c8e7dd565aecafb020683705564c42e62fedc (diff) | |
download | cpython-4615076471404c5e586d90a68ef2f26fc2201c84.zip cpython-4615076471404c5e586d90a68ef2f26fc2201c84.tar.gz cpython-4615076471404c5e586d90a68ef2f26fc2201c84.tar.bz2 |
Add a dummy "touch" target to the Makefile so that the custom buildbots can test this branch.
-rw-r--r-- | Makefile.pre.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index e4d5090..5260e6b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1371,6 +1371,9 @@ patchcheck: 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 @@ Python/thread.o: @THREADHEADERS@ .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 |