From 8e881eae8ff028e7e12ae1c6101348407f2487c4 Mon Sep 17 00:00:00 2001 From: nico Date: Mon, 16 Apr 2007 23:08:14 +0000 Subject: [PATCH] various ccache fixes (closes: #1599), thanks to Bartman007 git-svn-id: svn://svn.openwrt.org/openwrt/packages@6977 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- ipv6/ptrtd/Makefile | 2 +- ipv6/totd/Makefile | 2 +- net/wol/Makefile | 2 +- utils/lsof/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ipv6/ptrtd/Makefile b/ipv6/ptrtd/Makefile index b03fb6c50..760774f4f 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 d9b2444ca..6494ee2c1 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 515cbf3bd..91856a5c7 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 052573492..5faf4dfd8 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