From fde3f24891c018ab8cd843a1048d3646fc69d762 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Thu, 12 Jun 2003 09:38:15 +0000
Subject: [PATCH] Fixed bug in Deuce's mod to OS name translation.

---
 src/sbbs3/GNUmakefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sbbs3/GNUmakefile b/src/sbbs3/GNUmakefile
index 441b785d64..757cb3cb7f 100644
--- a/src/sbbs3/GNUmakefile
+++ b/src/sbbs3/GNUmakefile
@@ -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 "/")
 
-- 
GitLab