Commit f076d71d authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

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: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent b367ca32
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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