Browse Source

correctly test to see if awk exists

pull/415/head
Jack Humbert 8 years ago
parent
commit
91b469d88f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/rules.mk

+ 1
- 1
tmk_core/rules.mk View File

@ -89,7 +89,7 @@ ifeq ($(COLOR),true)
BOLD=\033[1m
endif
ifeq ("$(awk /dev/null 2>&1)", "")
ifneq ($(shell awk --version 2>/dev/null),)
AWK=awk
else
AWK=cat && test


Loading…
Cancel
Save