diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-20 15:49:58 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-01-20 15:49:58 +0100 |
commit | f076d71d3bf201f0911bc574e7d61e79a652ff86 (patch) | |
tree | 6fd2d2f81e5a5ce23230aa680225800a82890cd4 /package | |
parent | b367ca32e53a774c174899e44c77ed1d128cbcdc (diff) | |
download | buildroot-novena-f076d71d3bf201f0911bc574e7d61e79a652ff86.tar.gz buildroot-novena-f076d71d3bf201f0911bc574e7d61e79a652ff86.zip |
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 <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/open2300/open2300.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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 |