mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 08:49:15 +00:00
18 lines
272 B
Bash
Executable file
18 lines
272 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Building $(git log -1)"
|
|
echo "---"
|
|
|
|
set -Eeuxo pipefail
|
|
|
|
./tools/make_requests
|
|
./tools/make_makefiles
|
|
autoreconf -f
|
|
|
|
cd build64
|
|
../configure -C --enable-win64 --with-mingw BISON=/usr/local/opt/bison/bin/bison
|
|
make -s -j8
|
|
cd ..
|
|
|
|
git reset --hard
|
|
sleep 2
|