Build fix attempt, use TOOL_AWK (with fallback to "awk") rather than "nawk".

This commit is contained in:
kre 2018-05-29 01:09:49 +00:00
parent 710a39faba
commit 12c661f52d
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ dtrace_subrstr(dtrace_hdl_t *dtp, int subr)\n\
{\n\
switch (subr) {"
nawk '
${TOOL_AWK:-awk} '
/^#define[ ]*DIF_SUBR_/ && $2 != "DIF_SUBR_MAX" {
printf("\tcase %s: return (\"%s\");\n", $2, tolower(substr($2, 10)));
}'