summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-06-18 15:14:06 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-06-18 15:14:06 +0000
commit2968127b4c78a68807d688233ebc91c4c1635676 (patch)
treed8eb2273ed627acd3262aae227b64e07d3a433d0
parent30299d7481cb7ed3caa12e1ae5063c62364c0cad (diff)
downloadmaster-31e0f0ae-2968127b4c78a68807d688233ebc91c4c1635676.tar.gz
master-31e0f0ae-2968127b4c78a68807d688233ebc91c4c1635676.tar.bz2
master-31e0f0ae-2968127b4c78a68807d688233ebc91c4c1635676.zip
Fix spca5xx compilation with ccache (#1849)
SVN-Revision: 7663
-rw-r--r--package/spca5xx-view/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/spca5xx-view/Makefile b/package/spca5xx-view/Makefile
index 263896e1cf..6e6b9f1af7 100644
--- a/package/spca5xx-view/Makefile
+++ b/package/spca5xx-view/Makefile
@@ -31,7 +31,7 @@ define Package/spca5xx-view
endef
define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR)/servfox/ CFLAGS=$(TARTGET_CFLAGS) CC=$(TARGET_CC) all
+ $(MAKE) -C $(PKG_BUILD_DIR)/servfox/ CFLAGS="$(TARTGET_CFLAGS)" CC="$(TARGET_CC)" all
$(MAKE) -C $(PKG_BUILD_DIR)/servfox/ PREFIX="$(PKG_INSTALL_DIR)" install
endef