From: Felix Fietkau Date: Mon, 24 Sep 2012 17:32:13 +0000 (+0000) Subject: boost: move the + to the right place to fix build errors X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=ccc59fc465d58973ec8738fed8aa1afeeeab5339;p=openwrt%2Fsvn-archive%2Farchive.git boost: move the + to the right place to fix build errors SVN-Revision: 33533 --- diff --git a/libs/boost/Makefile b/libs/boost/Makefile index 211816781e..d2826b32cc 100644 --- a/libs/boost/Makefile +++ b/libs/boost/Makefile @@ -184,13 +184,13 @@ CONFIGURE_PREFIX:=$(PKG_INSTALL_DIR) TARGET_LDFLAGS += -pthread -lrt define Build/Compile - ( cd $(PKG_BUILD_DIR) ; \ + +( cd $(PKG_BUILD_DIR) ; \ echo "using gcc : $(ARCH) : $(GNU_TARGET_NAME)-gcc : \"$(TARGET_CFLAGS)\" \"$(TARGET_CXXFLAGS)\" \"$(TARGET_LDFLAGS)\" ;" > tools/build/v2/user-config.jam ; \ $(if $(CONFIG_PACKAGE_boost-python), \ echo "using python : : $(STAGING_DIR_ROOT)/usr/bin/python : $(STAGING_DIR)/usr/include/python2.7/ ;" >> \ tools/build/v2/user-config.jam; \ ) \ - +bjam \ + bjam \ '-sBUILD=release space on off' \ $(filter -j%,$(PKG_JOBS)) \ --toolset=gcc-$(ARCH) --build-type=minimal --layout=system \