support old versions of make. Do not quote commands passed to shell.

This commit is contained in:
Albert Cahalan 2008-05-25 06:28:49 +00:00
parent a618719dac
commit 8427f98c33

View file

@ -21,19 +21,21 @@ else
SYSNAME:=$(shell uname -s) SYSNAME:=$(shell uname -s)
ifeq ($(SYSNAME),Darwin) ifeq ($(SYSNAME),Darwin)
OS:=osx OS:=osx
else ifeq ($(SYSNAME),BeOS) else
ifeq ($(SYSNAME),BeOS)
OS:=beos OS:=beos
else ifeq ($(SYSNAME),Haiku) else
ifeq ($(SYSNAME),Haiku)
OS:=beos OS:=beos
else else
OS:=linux OS:=linux
endif endif
endif endif
beos_RSRC_CMD:="xres -o tuxpaint tuxpaint.rsrc" beos_RSRC_CMD:=xres -o tuxpaint tuxpaint.rsrc
RSRC_CMD:=$($(OS)_RSRC_CMD) RSRC_CMD:=$($(OS)_RSRC_CMD)
beos_MIMESET_CMD:="mimeset -f tuxpaint" beos_MIMESET_CMD:=mimeset -f tuxpaint
MIMESET_CMD:=$($(OS)_MIMESET_CMD) MIMESET_CMD:=$($(OS)_MIMESET_CMD)
windows_SO_TYPE:=dll windows_SO_TYPE:=dll