Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ if [ "${DEBUG:-0}" -gt 0 ]; then
fi

DEPSDIR="$PWD/pypkgs"
pyver=python$(python3 -c "import sys; print(\"%s.%s\" % sys.version_info[:2])")
pyver=python$(python3.12 -c "import sys; print(\"%s.%s\" % sys.version_info[:2])")
export PYTHONPATH=$DEPSDIR/lib/$pyver/site-packages:$DEPSDIR/lib64/$pyver/site-packages:$PWD/custom_plugin:$PWD/computational_macros:$PYTHONPATH
export PATH=$DEPSDIR/bin:$PATH


if [ "${INSTALLDEPS:-0}" -gt 0 ]; then
python3 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" -r requirements.txt
python3 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/custom_plugin
python3 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/computational_macros
python3.12 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" -r requirements.txt
python3.12 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/custom_plugin
python3.12 -m pip install --use-pep517 --prefix "$DEPSDIR" "$PWD"/computational_macros
# not needed for actual page
python3 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" linkchecker
python3.12 -m pip install --use-pep517 --ignore-installed --prefix "$DEPSDIR" linkchecker
fi

python3 build.py "$@"
python3.12 build.py "$@"

if [ "${WEBSERVER:-0}" -gt 0 ]; then
webbase=build
Expand Down
3 changes: 3 additions & 0 deletions scripts/link_checker/whitelist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,6 @@ https://www.tldp.org/guides.html

# 403
https://www.edx.org/course/introduction-linux-linuxfoundationx-lfs101x-0

# gone?
http://www.straightrunning.com/XmingNotes/
Loading