From: Peter Korsgaard Date: Mon, 30 Jan 2012 16:58:22 +0000 (+0100) Subject: boost: fix build with ccache X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4aadcac1684e4af54baa7e42b5e0fb73aa4b33b3;p=buildroot.git boost: fix build with ccache Drop quotes around TARGET_CXX as the boost buildsystem does handle spaces in the compiler command name, but treats it as a single command (and errors out) if quotes are used and ccache enabled. Signed-off-by: Peter Korsgaard --- diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 4bbc869045..4577f2dcc0 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -52,7 +52,7 @@ BOOST_FLAGS += $(if $(BOOST_WITHOUT_FLAGS_COMMASEPERATED), --without-libraries=$ define BOOST_CONFIGURE_CMDS (cd $(@D) && ./bootstrap.sh $(BOOST_FLAGS)) - echo "using gcc : $(TARGET_CC_VERSION) : \"$(TARGET_CXX)\" : \"$(TARGET_CXXFLAGS)\" \"$(TARGET_LDFLAGS)\" ;" > $(@D)/user-config.jam + echo "using gcc : $(TARGET_CC_VERSION) : $(TARGET_CXX) : \"$(TARGET_CXXFLAGS)\" \"$(TARGET_LDFLAGS)\" ;" > $(@D)/user-config.jam echo "" >> $(@D)/user-config.jam endef