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

Deuce's mod: uses tr instead of awk for lowercase conversion of uname results.

parent 5df2a42d
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,8 @@ 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]")
#os := $(shell echo $(os) | awk '/.*/ { print tolower($$1)}')
ifdef bcc
ODIR := bcc.$(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