From: Nicolas Thill Date: Mon, 16 Apr 2007 23:08:14 +0000 (+0000) Subject: various ccache fixes (closes: #1599), thanks to Bartman007 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=4ff5f9f4d84ddb7e2981035819927bdb86894a4f;p=openwrt%2Fsvn-archive%2Farchive.git various ccache fixes (closes: #1599), thanks to Bartman007 SVN-Revision: 6977 --- diff --git a/ipv6/ptrtd/Makefile b/ipv6/ptrtd/Makefile index b03fb6c50a..760774f4f1 100644 --- a/ipv6/ptrtd/Makefile +++ b/ipv6/ptrtd/Makefile @@ -35,7 +35,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ - CC=$(TARGET_CC) \ + CC="$(TARGET_CC)" \ all endef diff --git a/ipv6/totd/Makefile b/ipv6/totd/Makefile index d9b2444cae..6494ee2c1b 100644 --- a/ipv6/totd/Makefile +++ b/ipv6/totd/Makefile @@ -42,7 +42,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ - CC=$(TARGET_CC) \ + CC="$(TARGET_CC)" \ all endef diff --git a/net/wol/Makefile b/net/wol/Makefile index 515cbf3bdd..91856a5c7b 100644 --- a/net/wol/Makefile +++ b/net/wol/Makefile @@ -69,7 +69,7 @@ define Build/Compile rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) \ + CC="$(TARGET_CC)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ all install endef diff --git a/utils/lsof/Makefile b/utils/lsof/Makefile index 0525734928..5faf4dfd8f 100644 --- a/utils/lsof/Makefile +++ b/utils/lsof/Makefile @@ -35,7 +35,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ - CC=$(TARGET_CC) \ + CC="$(TARGET_CC)" \ CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" endef