shithub: libvpx

Download patch

ref: af5154671b3421cdc62b15b8afe540b83e8dfabe
parent: 0fc9abfbfd28f5cc423e286691aa8824cf3966c2
author: Justin Clift <justin@salasaga.org>
date: Thu May 20 20:09:38 EDT 2010

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

--- a/build/make/Makefile
+++ b/build/make/Makefile
@@ -37,7 +37,7 @@
 	@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 \