summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstwo <stwo>2010-12-17 21:57:46 (GMT)
committerstwo <stwo>2010-12-17 21:57:46 (GMT)
commit2870d73693a21b8ee4250454fb274932b2ee74bb (patch)
tree3f1833222cea8e440baa072a665daeaa6e9b489d
parent7b4dabd49125428008c1944a7e590cd94475ef9a (diff)
downloadtk-2870d73693a21b8ee4250454fb274932b2ee74bb.zip
tk-2870d73693a21b8ee4250454fb274932b2ee74bb.tar.gz
tk-2870d73693a21b8ee4250454fb274932b2ee74bb.tar.bz2
[Bug 2446711]: Remove 'allpatch' target.
-rw-r--r--ChangeLog4
-rw-r--r--unix/Makefile.in26
2 files changed, 6 insertions, 24 deletions
diff --git a/ChangeLog b/ChangeLog
index 2672970..7eb0174 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2010-12-17 Stuart Cassoff <stwo@users.sourceforge.net>
+ * unix/Makefile.in: [Bug 2446711]: Remove 'allpatch' target.
+
+2010-12-17 Stuart Cassoff <stwo@users.sourceforge.net>
+
* unix/Makefile.in: Use 'rpmbuild', not 'rpm' [Bug 2537626].
2010-12-17 Jan Nijtmans <nijtmans@users.sf.net>
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 1810824..ae1d26d 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.172 2010/12/17 17:57:45 stwo Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.173 2010/12/17 21:57:46 stwo Exp $
# Current Tk version; used in various names.
@@ -1660,34 +1660,12 @@ dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tkConfig.h.in $(UNIX_DIR)/tk.pc.in $(M
mkdir $(DISTDIR)/tests/ttk
cp -p $(TEST_DIR)/ttk/*.{test,tcl} $(DISTDIR)/tests/ttk
-#
-# 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. tk8.0p1.tar.gz) but the extracted source directory doesn't
-# include the patch designation (e.g. tk8.0).
-#
-
-allpatch: dist
- rm -f $(DISTROOT)/$(DISTNAME)-src.tar.gz $(DISTROOT)/$(ZIPNAME)
- mv $(DISTROOT)/tk${VERSION} $(DISTROOT)/old
- mv $(DISTROOT)/$(DISTNAME) $(DISTROOT)/tk${VERSION}
- cd $(DISTROOT); tar cf $(DISTNAME)-src.tar tk${VERSION}; \
- gzip -9 $(DISTNAME)-src.tar; zip -r8 $(ZIPNAME) tk${VERSION}
- mv $(DISTROOT)/tk${VERSION} $(DISTROOT)/$(DISTNAME)
- mv $(DISTROOT)/old $(DISTROOT)/tk${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
@@ -1721,6 +1699,6 @@ BUILD_HTML = \
.PHONY: test-ttk testlang runtest shell demo gdb install install-strip
.PHONY: install-binaries install-libraries install-demos install-doc
.PHONY: install-private-headers clean distclean depend genstubs checkstubs
-.PHONY: checkuchar checkexports rpm dist alldist allpatch html html-tcl html-tk
+.PHONY: checkuchar checkexports rpm dist alldist html html-tcl html-tk
# DO NOT DELETE THIS LINE -- make depend depends on it.