move boost update script to out of way place, fix bug in it
This commit is contained in:
parent
ab001b902a
commit
879f85aa7c
|
@ -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.
|
Loading…
Reference in New Issue