Skip to content

Commit ecdaf67

Browse files
committed
Don't use tables.H for ncgg as it makes Windows sad. (How did this ever work?)
1 parent 2a186b5 commit ecdaf67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

util/ncgg/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def ncgg(self, name, srcs: Targets = [], deps: Targets = [], cflags=[]):
4040
outs=["=tables.c", "=tables.h"],
4141
commands=[
4242
"$[ins]",
43-
"mv tables.H $[dir]/tables.h",
43+
"mv tables.h $[dir]/tables.h",
4444
"mv tables.c $[dir]/tables.c",
4545
],
4646
label="NCGG",

util/ncgg/ncgg.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Give statistics about table usage at end of program.
2626
Normally only the tables that have been used more than 75%
2727
are reported.
2828
.SH FILES
29-
tables.H, tables.c
29+
tables.h, tables.c
3030
.br
3131
code If the -c flag was given
3232
.br

util/ncgg/output.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ int tabledebug = 0; /* do not generate code for table debugging */
1313
int verbose = 0; /* print all statistics */
1414
int use_tes; /* use top element size information */
1515
char *c_file = "tables.c";
16-
char *h_file = "tables.H";
16+
char *h_file = "tables.h";
1717
char *cd_file = "code";
1818

1919
#ifndef NORCSID

0 commit comments

Comments
 (0)