From a729299ab5f088411e0f0029b72accc18a87fe02 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 22 Apr 2011 09:00:24 +0000 Subject: Rudimentary sanitisation of uname -s svn path=/trunk/netsurf/; revision=12217 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 84d0f075b..7fc7868df 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,11 @@ all: all-program # In case you don't see anything printed (including the warning), you # have an up-to-date RISC OS build system. ;-) HOST := $(shell uname -s) + +# Sanitise host +# TODO: Ideally, we want the equivalent of s/[^A-Za-z0-9]/_/g here +HOST := $(subst .,_,$(subst -,_,$(subst /,_,$(HOST)))) + ifeq ($(HOST),) HOST := riscos $(warning Build platform determination failed but that's a known problem for RISC OS so we're assuming a native RISC OS build.) -- cgit v1.2.3