[CHG] Installation of GRRLIB now works from path with whitespace

This commit is contained in:
Crayon2000 2009-11-26 17:20:28 +00:00
parent 412723840c
commit a9a83f9c98

View file

@ -8,7 +8,8 @@ ifeq ($(strip $(DEVKITPRO)),)
$(error "Use export DEVKITPRO=<path to>devkitPRO and try again")
endif
PWD := $(shell pwd)
NULLSTR :=
PWD := $(subst $(NULLSTR) ,\ ,$(shell pwd))
include $(DEVKITPPC)/base_rules