File tree Expand file tree Collapse file tree
.github/actions/environment-check Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments