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/hg/oneShot/addUcscCopyright/addUcscCopyright.c src/hg/oneShot/addUcscCopyright/addUcscCopyright.c
index 51a795f..f78916a 100644
--- src/hg/oneShot/addUcscCopyright/addUcscCopyright.c
+++ src/hg/oneShot/addUcscCopyright/addUcscCopyright.c
@@ -135,31 +135,31 @@
 /* addUcscCopyright - Add a UCSC type copyright to files. */
 {
 struct lineFile *lf = lineFileOpen(fileList, TRUE);
 char *line;
 int size;
 while (lineFileNext(lf, &line, &size))
     {
     verbose(2, "%d %s\n", lf->lineIx, line);
     char *fileName = nextWordRespectingQuotes(&line);
     char *date = nextWord(&line);
     if (date != NULL)
         {
 	if (!containsCopyright(fileName, 10))
 	    {
 	    addCopyright(fileName, sqlUnsigned(date), "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.");
 	    }
 	}
     }
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 2)
     usage();
 dry = optionExists("dry");
 addUcscCopyright(argv[1]);
 return 0;
 }