Skip to content

Commit bad12c4

Browse files
committed
Fix build error
1 parent a8e93ee commit bad12c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/vsbuild_xp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,18 +181,18 @@ jobs:
181181
mkdir mingw32
182182
7z x $top/build-scripts/mingw/lowend-bin/i686-7.3.0-release-posix-dwarf-rt_v5-rev0+nasm.7z -o${MSYSTEM_PREFIX}
183183
echo "MSYSTEM_PREFIX=${MSYSTEM_PREFIX}"
184-
find "${MSYSTEM_PREFIX}" -type f -iname "*.exe" -exec chmod +x {} \;
184+
chmod +x ${MSYSTEM_PREFIX}/bin/*.*
185+
chmod +x ${MSYSTEM_PREFIX}/i686-w64-mingw32/bin/*.*
186+
chmod +x ${MSYSTEM_PREFIX}/opt/bin/*.*
185187
- name: Build MinGW32 lowend SDL2
186188
run: |
187189
top=`pwd`
188-
export "MSYSTEM_PREFIX=/d/a/_temp/msys64/mingw32"
189190
./build-mingw-sdl2
190191
strip -s src/dosbox-x.exe
191192
mkdir -p mingw-bin
192193
cp src/dosbox-x.exe mingw-bin/dosbox-x_mingw_lowend_SDL2.exe
193194
- name: Build MinGW32 lowend SDL1
194195
run: |
195-
export "MSYSTEM_PREFIX=/d/a/_temp/msys64/mingw32"
196196
./build-mingw
197197
strip -s src/dosbox-x.exe
198198
cp src/dosbox-x.exe mingw-bin/dosbox-x_mingw_lowend_SDL1.exe

0 commit comments

Comments
 (0)