Skip to content

Commit 6a33137

Browse files
committed
Try to fix build by looking in different output directories.
1 parent 394f8ef commit 6a33137

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ jobs:
3838
- name: build
3939
shell: pwsh
4040
run: |
41-
cd libiconv
42-
git apply ..\libiconv.patch
43-
cd ..
4441
Set-PSRepository -Name "PSGallery" -InstallationPolicy Trusted
4542
install-module pscx -scope CurrentUser -AllowClobber
4643
$x64param = if ('${{ matrix.architecture }}' -eq 'x64') { $true } else { $false }

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if($vs2008) {
5656
} else {
5757
Set-Location .\libiconv\MSVC16
5858
msbuild libiconv_static\libiconv_static.vcxproj /p:Configuration=Release
59-
$iconvLib = Join-Path (pwd) $platDir\lib
59+
$iconvLib = Join-Path (pwd) $platDir\Release\lib
6060
}
6161

6262
$iconvInc = Join-Path $PSScriptRoot libiconv\source\include

0 commit comments

Comments
 (0)