diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-02-10 17:52:45 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-02-10 17:52:45 +0000 |
commit | e199317af316b6c20be40df61745620d8e3b1c43 (patch) | |
tree | c4fe4d0677afd8d145d469d45ebf22647c2ba8bf | |
parent | af290a63dcbf7b681bba4a5cb0ecc00bfc48eee2 (diff) | |
download | upstream-e199317af316b6c20be40df61745620d8e3b1c43.tar.gz upstream-e199317af316b6c20be40df61745620d8e3b1c43.tar.bz2 upstream-e199317af316b6c20be40df61745620d8e3b1c43.zip |
allow kexec-tools to compile with ccache enabled, patch from Luca Sinigaglia
SVN-Revision: 14467
-rw-r--r-- | package/kexec-tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kexec-tools/Makefile b/package/kexec-tools/Makefile index 3951197721..bd8854e634 100644 --- a/package/kexec-tools/Makefile +++ b/package/kexec-tools/Makefile @@ -50,8 +50,8 @@ CONFIGURE_ARGS = \ --sysconfdir=/etc \ CONFIGURE_VARS += \ - BUILD_CC=$(HOSTCC) \ - TARGET_CC=$(TARGET_CC) \ + BUILD_CC="$(HOSTCC)" \ + TARGET_CC="$(TARGET_CC)" \ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) all |