Attachment "567079.diff" to
ticket [567079ffff]
added by
andreas_kupries
2002-08-07 06:02:17.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/tcllib/tcllib/ChangeLog,v
retrieving revision 1.166
diff -u -r1.166 ChangeLog
--- ChangeLog 6 Aug 2002 21:29:37 -0000 1.166
+++ ChangeLog 6 Aug 2002 22:59:44 -0000
@@ -1,5 +1,11 @@
2002-08-06 Andreas Kupries <[email protected]>
+ * Makefile.in (dist): Fixed SF Bug #567079, reported by Don Porter
+ <[email protected]>. No infinite recursion anymore for
+ srcdir == builddir.
+
+ * ftp: Fixed SF Bug #582668.
+
* comm: Fixed SF Bug #589225.
* Makefile.in (install-doc): Restored the code inlining the
Index: Makefile.in
===================================================================
RCS file: /cvsroot/tcllib/tcllib/Makefile.in,v
retrieving revision 1.75
diff -u -r1.75 Makefile.in
--- Makefile.in 6 Aug 2002 21:29:37 -0000 1.75
+++ Makefile.in 6 Aug 2002 22:59:44 -0000
@@ -310,8 +310,10 @@
dist: html-doc nroff-doc
rm -rf tcllib-$(VERSION) tcllib-$(VERSION).tar.gz tcllib-$(VERSION).zip
+ ls -d $(srcdir)/* > __FILES
@mkdir tcllib-$(VERSION)
- cp -r $(srcdir)/* tcllib-$(VERSION) ;
+ cp -r `cat __FILES | grep -v __FILES` tcllib-$(VERSION) ;
+ rm __FILES
cp -r doc tcllib-$(VERSION) ;
find tcllib-$(VERSION) -name CVS -prune -exec rm -rf {} \;
for j in $(MODULES) ; do \
Index: modules/ftp/ChangeLog