diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-01-29 20:41:38 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-01-29 20:44:43 +0900 |
| commit | 9d9b7294a4a9e93301bfbbf327e9beb99cfa685b (patch) | |
| tree | 237ddd47d946f2b95919a611b50600d6d8b22c2d /internal/rosa/x.go | |
| parent | 6c1e2f10a763ac46fc582c0082a577de84f54d62 (diff) | |
internal/rosa: flags for toolchain-dependent artifact
This is much cleaner to add extra flags to.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/x.go')
| -rw-r--r-- | internal/rosa/x.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/x.go b/internal/rosa/x.go index a10f6ba2..8b9e6edf 100644 --- a/internal/rosa/x.go +++ b/internal/rosa/x.go @@ -7,7 +7,7 @@ func (t Toolchain) newXproto() pkg.Artifact { version = "7.0.23" checksum = "goxwWxV0jZ_3pNczXFltZWHAhq92x-aEreUGyp5Ns8dBOoOmgbpeNIu1nv0Zx07z" ) - return t.New("xproto-"+version, false, []pkg.Artifact{ + return t.New("xproto-"+version, 0, []pkg.Artifact{ t.Load(Make), t.Load(PkgConfig), }, nil, nil, ` @@ -30,7 +30,7 @@ func (t Toolchain) newLibXau() pkg.Artifact { version = "1.0.7" checksum = "bm768RoZZnHRe9VjNU1Dw3BhfE60DyS9D_bgSR-JLkEEyUWT_Hb_lQripxrXto8j" ) - return t.New("libXau-"+version, false, []pkg.Artifact{ + return t.New("libXau-"+version, 0, []pkg.Artifact{ t.Load(Make), t.Load(PkgConfig), |
