From a9a83f9c9846330cd2e8c7ce93938ada9b68bec0 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Thu, 26 Nov 2009 17:20:28 +0000 Subject: [PATCH] [CHG] Installation of GRRLIB now works from path with whitespace --- GRRLIB/GRRLIB/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GRRLIB/GRRLIB/Makefile b/GRRLIB/GRRLIB/Makefile index 8f0e761..c889e82 100644 --- a/GRRLIB/GRRLIB/Makefile +++ b/GRRLIB/GRRLIB/Makefile @@ -8,7 +8,8 @@ ifeq ($(strip $(DEVKITPRO)),) $(error "Use export DEVKITPRO=devkitPRO and try again") endif -PWD := $(shell pwd) +NULLSTR := +PWD := $(subst $(NULLSTR) ,\ ,$(shell pwd)) include $(DEVKITPPC)/base_rules