Merge "makefile: fix error message due to missing quotes"

This commit is contained in:
John Koleszar 2010-05-21 02:52:11 -07:00 committed by Code Review
commit 6e12cc9411

View File

@ -37,7 +37,7 @@ install:
@if [ -d "$(DIST_DIR)/src" ]; then \
mkdir -p "$(DIST_DIR)/build"; \
cd "$(DIST_DIR)/build"; \
if [ $(TGT_CC) = "rvct" ] ; then \
if [ "$(TGT_CC)" = "rvct" ] ; then \
echo "../src/configure --target=$(TOOLCHAIN) --libc=$(ALT_LIBC)"; \
../src/configure --target=$(TOOLCHAIN) --libc=$(ALT_LIBC); \
else \