Commit 879f85aa authored by Dick Hollenbeck's avatar Dick Hollenbeck

move boost update script to out of way place, fix bug in it

parent ab001b90
......@@ -3,8 +3,8 @@
# A shell script to update the boost subset within KiCad to newer version.
BOOST_VERSION=1_49_0
SRC_BOOST=/tmp/boost_$BOOST_VERSION/boost
KICAD_BASE=/svn/kicad/testing.checkout
SRC_BOOST="/tmp/boost_$BOOST_VERSION/boost"
KICAD_BASE="/svn/kicad/testing.checkout"
DST_BOOST="$KICAD_BASE/include/boost"
# control the subset of boost libs used:
......@@ -38,19 +38,16 @@ BOOST_DIRS="\
utility \
"
# staging area for non-included dirs:
# numeric accumulators algorithm
# remove all old BOOST include files using bzr
bzr rm --no-backup --quiet "$DST_BOOST/*"
eval bzr rm --no-backup --quiet "$DST_BOOST/*"
# copy all *.hpp files in the base boost directory:
eval cp "$SRC_BOOST/*.hpp" "$DST_BOOST/"
# copy recursively all chosen boost libraries:
for D in $BOOST_DIRS; do
eval cp -r "$SRC_BOOST/$D" "$DST_BOOST"
eval cp -r "$SRC_BOOST/$D" "$DST_BOOST/"
done
# tell bzr about the new files so they become part of the repo.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment