Skip to content

Commit 28b88a7

Browse files
committed
fix: rename pkg-config step to 'build dependencies' - these are dev libs not runtime
1 parent 5c06180 commit 28b88a7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/environment-check/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ runs:
6868
fi
6969
echo "All required system libraries present."
7070
71-
- name: Check pkg-config runtime dependencies
71+
- name: Check build dependencies via pkg-config
7272
shell: bash
7373
run: |
74-
echo "===== pkg-config Runtime Dependency Check ====="
74+
echo "===== Build Dependency Check (pkg-config) ====="
7575
if ! command -v pkg-config &>/dev/null; then
7676
echo "ERROR: pkg-config not found"
7777
exit 1
@@ -89,10 +89,10 @@ runs:
8989
fi
9090
done
9191
if [ -n "$MISSING" ]; then
92-
echo "ERROR: Missing pkg-config dependencies:$MISSING"
92+
echo "ERROR: Missing build dependencies (dev libraries not installed):$MISSING"
9393
exit 1
9494
fi
95-
echo "All required pkg-config dependencies present."
95+
echo "All required build dependencies present."
9696
9797
- name: Check FFmpeg MTL plugin in avdevices
9898
shell: bash

0 commit comments

Comments
 (0)