mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
a912eb809b
Use the runner MAKEFLAGS instead.
16 lines
273 B
Bash
Executable file
16 lines
273 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Building $(git log -1)"
|
|
echo "---"
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
./tools/make_requests
|
|
./tools/make_specfiles
|
|
./tools/make_makefiles
|
|
autoreconf -f
|
|
|
|
cd build64
|
|
../configure -q -C --enable-werror --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
|
|
make -s
|
|
cd ..
|