More debug output.

This commit is contained in:
Karliss 2025-01-17 02:56:04 +02:00
parent 887d42c8cc
commit e96959bdcd
2 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,7 @@ ls
python_prefix=$(pkg-config --variable=prefix python3) python_prefix=$(pkg-config --variable=prefix python3)
echo "pprefix $python_prefix" echo "pprefix $python_prefix"
ls /github/workspace/cutter-deps/
ls "$python_prefix" ls "$python_prefix"
ls "$python_prefix/bin" ls "$python_prefix/bin"
python_version=`$python_prefix/bin/python3 --version` python_version=`$python_prefix/bin/python3 --version`

View File

@ -60,6 +60,10 @@ echo "$DEPS_SHA256 $DEPS_FILE" | ${SHA256SUM} -c - || exit 1
tar -xf "$DEPS_FILE" || exit 1 tar -xf "$DEPS_FILE" || exit 1
if [ -f relocate.sh ]; then if [ -f relocate.sh ]; then
echo "-----------before relocate"
cat ./python/lib/pkgconfig/* || true
./relocate.sh || exit 1 ./relocate.sh || exit 1
echo "-----------after relocate"
cat ./python/lib/pkgconfig/* || true
fi fi