From: Justin Clift Date: Thu, 20 May 2010 14:09:38 +0000 (+1000) Subject: makefile: fix error message due to missing quotes X-Git-Tag: 1.0_branch~1075^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af5154671b3421cdc62b15b8afe540b83e8dfabe;p=profile%2Fivi%2Flibvpx.git makefile: fix error message due to missing quotes 1 liner bug fix for issue #10. Surrounding quotation marks were missing from a variable, causing a warning message inside a test clause. Change-Id: Ia21421f77c309bbd87332547374241269bbe5326 --- diff --git a/build/make/Makefile b/build/make/Makefile index 412629e..93db44d 100755 --- a/build/make/Makefile +++ b/build/make/Makefile @@ -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 \