4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/lib/chainBlock.c src/lib/chainBlock.c
index 5c5ed8b..80f921e 100644
--- src/lib/chainBlock.c
+++ src/lib/chainBlock.c
@@ -1,22 +1,22 @@
 /* chainBlock - Chain together scored blocks from an alignment
  * into scored chains.  Internally this uses a kd-tree and a
  * varient of an algorithm suggested by Webb Miller and further
  * developed by Jim Kent. */
 
 /* Copyright (C) 2011 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #include "common.h"
 #include "localmem.h"
 #include "linefile.h"
 #include "dlist.h"
 #include "chainBlock.h"
 
 
 struct kdBranch
 /* A kd-tree. That is a binary tree which partitions the children
  * into higher and lower one dimension at a time.  We're just doing
  * one in two dimensions, so it alternates between q and t dimensions. */
     {
     struct kdBranch *lo;      /* Pointer to children with lower coordinates. */
     struct kdBranch *hi;      /* Pointer to children with higher coordinates. */