From f076d71d3bf201f0911bc574e7d61e79a652ff86 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 20 Jan 2012 15:49:58 +0100 Subject: open2300: quote TARGET_{CC,LD} TARGET_CC / TARGET_LD may contain spaces (E.G. when ccache is used), so ensure they are properly quoted when passed to make. Signed-off-by: Peter Korsgaard --- package/open2300/open2300.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/open2300') diff --git a/package/open2300/open2300.mk b/package/open2300/open2300.mk index 450b99051..59be66f58 100644 --- a/package/open2300/open2300.mk +++ b/package/open2300/open2300.mk @@ -17,7 +17,7 @@ ifeq ($(BR2_PACKAGE_MYSQL),y) endif define OPEN2300_BUILD_CMDS - $(MAKE) CC=$(TARGET_CC) LD=$(TARGET_LD) -C $(@D) $(OPEN2300_BINS) + $(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_LD)" -C $(@D) $(OPEN2300_BINS) endef define OPEN2300_INSTALL_TARGET_CMDS -- cgit v1.2.3