Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/LinuxInstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libxcb-cursor0 libspeechd2 gnupg2 wget appstream libcups2 libcups2-dev
sudo apt-get install -y autoconf autoconf-archive automake libtool libxcb-cursor0 libspeechd2 gnupg2 wget appstream libcups2 libcups2-dev

- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
4 changes: 4 additions & 0 deletions changes/cursor-fix-linux-appimage-gperf-5319.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Category: internal
Audience: Maintainers
Breaking-Change: no
Summary: Install autoconf, autoconf-archive, automake, and libtool in the Linux AppImage workflow so vcpkg can build gperf for fontconfig, and initialize PdfTool before the install smoke script runs version probes.
3 changes: 2 additions & 1 deletion scripts/smoke-test-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ foreach ($item in $requiredFiles) {
Write-Host "OK: $($item.Label)"
}

$pdfTool = Join-Path $InstallDir "PdfTool.exe"

$versionOutput = @(& $pdfTool --version 2>&1)
$versionExit = $LASTEXITCODE
$versionText = $versionOutput -join "`n"
Expand Down Expand Up @@ -248,7 +250,6 @@ if ([string]::IsNullOrWhiteSpace($TestPdf) -or -not (Test-Path -LiteralPath $Tes
}

$profilePath = Join-Path $ProfilesDir "loop-default.json"
$pdfTool = Join-Path $InstallDir "PdfTool.exe"
$editor = Join-Path $InstallDir "LoopEditor.exe"
# Strip Qt from PATH so preflight cannot silently resolve ICU/Qt deps from a
# developer or CI toolchain install — the bundle must be self-contained (MIC-301).
Expand Down
Loading