Skip to content
Snippets Groups Projects
Commit 6858fefa authored by rswindell's avatar rswindell
Browse files

Deuce's mod: using tr instead of awk for lowercase conversion of uname result.

parent 561e2467
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ ifndef os
os = $(shell uname)
$(warning OS not specified on command line, setting to '$(os)'.)
endif
os := $(shell echo $(os) | awk '/.*/ { print tolower($$1)}')
os := $(shell echo $(os) | tr "[A-Z]" "[a-z]")
ODIR := gcc.$(os)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment