07639647efe6cfe6dbc643b8fae13c3dd153c528
markd
  Fri Jan 17 19:07:18 2025 -0800
work on docker utils build

diff --git src/hg/utils/overlapSelect/overlapSelect.c src/hg/utils/overlapSelect/overlapSelect.c
index dc45b60e3f3..3e8f56d1bf0 100644
--- src/hg/utils/overlapSelect/overlapSelect.c
+++ src/hg/utils/overlapSelect/overlapSelect.c
@@ -362,33 +362,31 @@
 inCar->carFree(&inCar);
 if (statsOutput && outputBoth)
     outputStatsSelNotUsed(outFh);
 
 carefulClose(&outFh);
 carefulClose(&dropFh);
 /* enable for memory analysis */
 #if 0
 selectTableFree();
 #endif
 }
 
 void usage()
 /* usage message and abort */
 {
-static char *usageMsg =
-#include "usage.msg"
-    ;
+#include "usage.h"
 errAbort("%s", usageMsg);
 }
 
 static boolean hasStrand(unsigned fmt, struct coordCols* coordCols)
 /* does the format include strand? */
 {
 return !((selectFmt == BED3P_FMT) ||
          ((selectFmt == COORD_COLS_FMT) && (coordCols->strandCol == -1)));
 }
 
 int main(int argc, char** argv)
 /* entry */
 {
 char *selectFile, *inFile, *outFile, *dropFile;
 optionInit(&argc, argv, optionSpecs);