summaryrefslogtreecommitdiff
path: root/.github/workflows/mingw.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-11-07 15:31:34 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-11-07 20:46:25 +0900
commitec032e86faf9ac128ac51e3394d9b4001a374b38 (patch)
treed97dba87dc57b3b7e0062944e9cceae79f57c42c /.github/workflows/mingw.yml
parentba0e3ea130357f311ba9b66fc80213adde5eab01 (diff)
[MinGW] Clear prefix and move the directory to DESTDIR
Also the destination will be created at the installation.
Diffstat (limited to '.github/workflows/mingw.yml')
-rw-r--r--.github/workflows/mingw.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index d440c08c46..0631718bb2 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -74,7 +74,6 @@ jobs:
}
- name: misc setup, autoreconf
run: |
- mkdir install
mkdir temp
cd src
sh -c "autoreconf -fi"
@@ -88,7 +87,7 @@ jobs:
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
$config_args = "--build=$env:CHOST --host=$env:CHOST --target=$env:CHOST"
Write-Host $config_args
- sh -c "../src/configure --disable-install-doc --prefix=/install $config_args"
+ sh -c "../src/configure --disable-install-doc --prefix=/. $config_args"
# Write-Host "-------------------------------------- config.log"
# Get-Content ./config.log | foreach {Write-Output $_}
@@ -113,7 +112,7 @@ jobs:
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
- make DESTDIR=.. install-nodoc
+ make DESTDIR=../install install-nodoc
- name: test
timeout-minutes: 5