diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-03-01 12:11:41 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-03-01 14:41:34 +0900 |
| commit | 51d3df2419e26f15d780c98629a357473855ebd4 (patch) | |
| tree | e5c0e3810156d3f706ed732b67bd5e12b3dfa8f5 /internal/rosa/xcb.go | |
| parent | 1d0fcf3a75bbdbeac24c34f5d55cb5ba347f1782 (diff) | |
internal/rosa/make: split build and check
Doing these together breaks far too many buggy makefiles.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/xcb.go')
| -rw-r--r-- | internal/rosa/xcb.go | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/internal/rosa/xcb.go b/internal/rosa/xcb.go index b659cf2e..b35c5171 100644 --- a/internal/rosa/xcb.go +++ b/internal/rosa/xcb.go @@ -11,11 +11,7 @@ func (t Toolchain) newXCBProto() pkg.Artifact { nil, "https://xcb.freedesktop.org/dist/xcb-proto-"+version+".tar.gz", mustDecode(checksum), pkg.TarGzip, - ), &MakeAttr{ - Configure: [][2]string{ - {"enable-static"}, - }, - }, + ), nil, t.Load(Python), ) } @@ -30,11 +26,7 @@ func (t Toolchain) newXCB() pkg.Artifact { nil, "https://xcb.freedesktop.org/dist/libxcb-"+version+".tar.gz", mustDecode(checksum), pkg.TarGzip, - ), &MakeAttr{ - Configure: [][2]string{ - {"enable-static"}, - }, - }, + ), nil, t.Load(Python), t.Load(PkgConfig), |
