Skip to content

Commit

Permalink
build_docs: remove --ignore flag (not working)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdarwin committed Jan 20, 2025
1 parent a10186a commit 18a55ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions build_docs/linuxdocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ if [ "$skipboostoption" != "yes" ] && [ "$typeoption" != "antora" ] ; then

# if [ "$typeoption" = "main" ]; then
# git submodule update --init tools/auto_index
# python3 tools/boostdep/depinst/depinst.py --ignore "${REPONAME}" -vv ../tools/auto_index
# python3 tools/boostdep/depinst/depinst.py -vv ../tools/auto_index

# # recopy the library if it was overwritten.
# if [ ! "${BOOSTROOTLIBRARY}" = "yes" ]; then
Expand All @@ -424,11 +424,11 @@ if [ "$skipboostoption" != "yes" ] && [ "$typeoption" != "antora" ] ; then

# Previously the logic had been to only install auto_index for "$typeoption" = "main"
# It's simpler to always install that.
# Also, --ignore is broken on depinst.py.
# depinst.py --ignore "${REPONAME}" doesn't work as hoped. Perhaps a new --preserve

git submodule update --init tools/auto_index
python3 tools/boostdep/depinst/depinst.py --ignore "${REPONAME}" ../tools/auto_index
python3 tools/boostdep/depinst/depinst.py --ignore "${REPONAME}" ../tools/quickbook
python3 tools/boostdep/depinst/depinst.py ../tools/auto_index
python3 tools/boostdep/depinst/depinst.py ../tools/quickbook

# recopy the library if it was overwritten.
if [ ! "${BOOSTROOTLIBRARY}" = "yes" ]; then
Expand Down
6 changes: 3 additions & 3 deletions build_docs/macosdocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -454,11 +454,11 @@ if [ "$skipboostoption" != "yes" ] && [ "$typeoption" != "antora" ] ; then

# Previously the logic had been to only install auto_index for "$typeoption" = "main"
# It's simpler to always install that.
# Also, --ignore is broken on depinst.py.
# depinst.py --ignore "${REPONAME}" doesn't work as hoped. Perhaps a new --preserve

git submodule update --init tools/auto_index
python3 tools/boostdep/depinst/depinst.py --ignore "${REPONAME}" ../tools/auto_index
python3 tools/boostdep/depinst/depinst.py --ignore "${REPONAME}" ../tools/quickbook
python3 tools/boostdep/depinst/depinst.py ../tools/auto_index
python3 tools/boostdep/depinst/depinst.py ../tools/quickbook

# recopy the library if it was overwritten.
if [ ! "${BOOSTROOTLIBRARY}" = "yes" ]; then
Expand Down
6 changes: 3 additions & 3 deletions build_docs/windowsdocs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,9 @@ if ( -Not ${skip-boost} ) {
git submodule update --init tools/boostlook

git submodule update --init tools/auto_index
# However, "--ignore $REPONAME" is not yet working.
python tools/boostdep/depinst/depinst.py --ignore $REPONAME ../tools/quickbook
python tools/boostdep/depinst/depinst.py --ignore $REPONAME ../tools/auto_index
# depinst.py --ignore "${REPONAME}" doesn't work as hoped. Perhaps a new --preserve
python tools/boostdep/depinst/depinst.py ../tools/quickbook
python tools/boostdep/depinst/depinst.py ../tools/auto_index

# Recopy the library, if it was overwritten by the submodule updates that just occurred.
if ( -Not ($BOOSTROOTLIBRARY -eq "yes") ) {
Expand Down

0 comments on commit 18a55ef

Please sign in to comment.