Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
879f85aa
Commit
879f85aa
authored
May 16, 2012
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move boost update script to out of way place, fix bug in it
parent
ab001b90
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
update-boost.sh
tools/update-boost.sh
+4
-7
No files found.
update-boost.sh
→
tools/
update-boost.sh
View file @
879f85aa
...
@@ -3,8 +3,8 @@
...
@@ -3,8 +3,8 @@
# A shell script to update the boost subset within KiCad to newer version.
# A shell script to update the boost subset within KiCad to newer version.
BOOST_VERSION
=
1_49_0
BOOST_VERSION
=
1_49_0
SRC_BOOST
=
/tmp/boost_
$BOOST_VERSION
/boost
SRC_BOOST
=
"/tmp/boost_
$BOOST_VERSION
/boost"
KICAD_BASE
=
/svn/kicad/testing.checkout
KICAD_BASE
=
"/svn/kicad/testing.checkout"
DST_BOOST
=
"
$KICAD_BASE
/include/boost"
DST_BOOST
=
"
$KICAD_BASE
/include/boost"
# control the subset of boost libs used:
# control the subset of boost libs used:
...
@@ -38,19 +38,16 @@ BOOST_DIRS="\
...
@@ -38,19 +38,16 @@ BOOST_DIRS="\
utility
\
utility
\
"
"
# staging area for non-included dirs:
# numeric accumulators algorithm
# remove all old BOOST include files using bzr
# 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:
# copy all *.hpp files in the base boost directory:
eval cp
"
$SRC_BOOST
/*.hpp"
"
$DST_BOOST
/"
eval cp
"
$SRC_BOOST
/*.hpp"
"
$DST_BOOST
/"
# copy recursively all chosen boost libraries:
# copy recursively all chosen boost libraries:
for
D
in
$BOOST_DIRS
;
do
for
D
in
$BOOST_DIRS
;
do
eval cp
-r
"
$SRC_BOOST
/
$D
"
"
$DST_BOOST
"
eval cp
-r
"
$SRC_BOOST
/
$D
"
"
$DST_BOOST
/
"
done
done
# tell bzr about the new files so they become part of the repo.
# tell bzr about the new files so they become part of the repo.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment