summaryrefslogtreecommitdiff
path: root/package/boost
diff options
context:
space:
mode:
authorTobias Breckle <tobias.breckle@stz-bt.de>2011-09-05 00:22:34 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-09-05 11:41:28 +0200
commit40c2b2f6a83e9cca14567e855fc75a8d1ef78f28 (patch)
tree17adac75ceddad98f52fa1d7799be02eecb7f705 /package/boost
parent92f89eb60d3a448a1a71243b7f0c8f5b8b2322cd (diff)
changed behavior of user.jam line removing
Diffstat (limited to 'package/boost')
-rw-r--r--package/boost/Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/package/boost/Makefile b/package/boost/Makefile
index 65868dd9f..45c18e08e 100644
--- a/package/boost/Makefile
+++ b/package/boost/Makefile
@@ -115,16 +115,12 @@ pre-build:
do-build:
@echo "build boost library..."
# remove exisiting using gcc line from user.jam
-ifeq (`grep "^using gcc" ${USER_JAM} | wc -l`, 0)
${SED} "/^using gcc/d" ${USER_JAM}
-endif
# add using gcc line with determined options to user.jam
echo "using gcc : ${GPP_VERSION} : ${GPP_PATH} ;" >> ${USER_JAM};
# remove exisiting using python line from user.jam
-ifeq (`grep "^using python" ${USER_JAM} | wc -l`, 0)
${SED} "/^using python/d" ${USER_JAM}
-endif
ifneq (${ADK_PACKAGE_BOOST_PYTHON},)
# add using python line with determined options to user.jam
echo "using python : ${PYTHON_VERSION} : ${PYTHON_PATH} : ${PYTHON_INCLUDE} : ${PYTHON_LIB} ;" >> ${USER_JAM};