Module: wine Branch: master Commit: b527b232cfb50a59c4a58da0b60b5a023c9c711c URL: https://gitlab.winehq.org/wine/wine/-/commit/b527b232cfb50a59c4a58da0b60b5a0...
Author: Jinoh Kang jinoh.kang.kr@gmail.com Date: Mon Mar 11 22:12:17 2024 +0900
tools/gitlab: Run make_specfiles before building.
Since wine commit 401288a78dd (make_specfiles: Generate a list of syscalls from the corresponding spec files., 2023-11-16), spec files are used to auto-generate the following files:
- dlls/ntdll/ntsyscalls.h (from dlls/ntdll/ntdll.spec) - dlls/win32u/win32syscalls.h (from dlls/win32u/win32u.spec)
---
tools/gitlab/build-clang | 1 + tools/gitlab/build-linux | 1 + tools/gitlab/build-mac | 1 + 3 files changed, 3 insertions(+)
diff --git a/tools/gitlab/build-clang b/tools/gitlab/build-clang index 3ed87b3b173..a8bb41693f8 100755 --- a/tools/gitlab/build-clang +++ b/tools/gitlab/build-clang @@ -6,6 +6,7 @@ echo "---" set -Eeuxo pipefail
./tools/make_requests +./tools/make_specfiles ./tools/make_makefiles autoreconf -f
diff --git a/tools/gitlab/build-linux b/tools/gitlab/build-linux index d77ca9cdb8e..a592c4f5918 100755 --- a/tools/gitlab/build-linux +++ b/tools/gitlab/build-linux @@ -6,6 +6,7 @@ echo "---" set -Eeuxo pipefail
./tools/make_requests +./tools/make_specfiles ./tools/make_makefiles autoreconf -f
diff --git a/tools/gitlab/build-mac b/tools/gitlab/build-mac index 5c37aa6bcc9..98df7731ad1 100755 --- a/tools/gitlab/build-mac +++ b/tools/gitlab/build-mac @@ -6,6 +6,7 @@ echo "---" set -Eeuxo pipefail
./tools/make_requests +./tools/make_specfiles ./tools/make_makefiles autoreconf -f