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

Fixed bug in Deuce's mod to OS name translation.

parent db2cd494
Branches
Tags
No related merge requests found
......@@ -65,7 +65,7 @@ ifeq ($(shell uname -m),ppc)
os := $(os)-ppc
endif
# this line wont work with solaris unless awk in path is actually gawk
os := $(shell echo $(os) | tr "[ A-Z]" "[-a-z]")
os := $(shell echo $(os) | tr "[ A-Z]" "[\-a-z]")
# remove '/' from "os/2"
os := $(shell echo $(os) | tr -d "/")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment