summaryrefslogtreecommitdiffstats
path: root/tools/squashfs
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-07-13 23:18:15 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-07-13 23:18:15 +0000
commit8502617a6da157c77d406ad29089b26e3e6f0c13 (patch)
tree21c0f6585e07026b9e225618e76f8d599074afee /tools/squashfs
parenteba9039331cd3621fba90eae5b10cd63db60e130 (diff)
tools/squashfs(4): use $(HOSTCC) to avoid building with clang on recent mac os x. the clang build fails with some linker errors
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32706 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/squashfs')
-rw-r--r--tools/squashfs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/squashfs/Makefile b/tools/squashfs/Makefile
index 473c52651..c6ad3dd1b 100644
--- a/tools/squashfs/Makefile
+++ b/tools/squashfs/Makefile
@@ -20,6 +20,7 @@ include $(INCLUDE_DIR)/host-build.mk
define Host/Compile
$(MAKE) -C $(HOST_BUILD_DIR)/squashfs-tools \
+ CC="$(HOSTCC)" \
LZMAPATH=$(STAGING_DIR_HOST)/lib \
mksquashfs-lzma unsquashfs-lzma
endef