diff options
author | stwo <stwo> | 2010-12-17 21:59:03 (GMT) |
---|---|---|
committer | stwo <stwo> | 2010-12-17 21:59:03 (GMT) |
commit | 99a85c58620ba2393891f55b8a9ecbc4baf313fb (patch) | |
tree | 4e13e32684ca7026846f9ae92f17caa483524fc4 /unix/Makefile.in | |
parent | 958c34d5fa6d735c404dbaba672425a58de90c88 (diff) | |
download | tcl-99a85c58620ba2393891f55b8a9ecbc4baf313fb.zip tcl-99a85c58620ba2393891f55b8a9ecbc4baf313fb.tar.gz tcl-99a85c58620ba2393891f55b8a9ecbc4baf313fb.tar.bz2 |
[Bug 2446711]: Remove 'allpatch' target.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index e860660..555052e 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.229.2.28 2010/12/17 17:56:18 stwo Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.229.2.29 2010/12/17 21:59:03 stwo Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1718,34 +1718,12 @@ dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tclConfig.h.in $(MAC_OSX_DIR)/configure cp -p $(TOMMATH_SRCS) $(TOMMATH_DIR)/*.h \ $(DISTDIR)/libtommath -# -# The following target can only be used for non-patch releases. Use the -# "allpatch" target below for patch releases. -# - alldist: dist rm -f $(DISTROOT)/$(DISTNAME)-src.tar.gz $(DISTROOT)/$(ZIPNAME) cd $(DISTROOT); tar cf $(DISTNAME)-src.tar $(DISTNAME); \ gzip -9 $(DISTNAME)-src.tar; zip -qr8 $(ZIPNAME) $(DISTNAME) # -# The target below is similar to "alldist" except it works for patch releases. -# It is needed because patch releases are peculiar: the patch designation -# appears in the name of the compressed file (e.g. tcl8.0p1.tar.gz) but the -# extracted source directory doesn't include the patch designation (e.g., -# tcl8.0). -# - -allpatch: dist - rm -f $(DISTROOT)/$(DISTNAME)-src.tar.gz $(DISTROOT)/$(ZIPNAME) - mv $(DISTROOT)/tcl${VERSION} $(DISTROOT)/old - mv $(DISTROOT)/$(DISTNAME) $(DISTROOT)/tcl${VERSION} - cd $(DISTROOT); tar cf $(DISTNAME)-src.tar tcl${VERSION}; \ - gzip -9 $(DISTNAME)-src.tar; zip -r8 $(ZIPNAME) tcl${VERSION} - mv $(DISTROOT)/tcl${VERSION} $(DISTROOT)/$(DISTNAME) - mv $(DISTROOT)/old $(DISTROOT)/tcl${VERSION} - -# # This target creates the HTML folder for Tcl & Tk and places it in # DISTDIR/html. It uses the tcltk-man2html.tcl tool from the Tcl group's tool # workspace. It depends on the Tcl & Tk being in directories called tcl8.* & |