summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-24 22:42:01 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-24 22:42:08 +0100
commitb8a7a0cd31c5f956627af698ebd15f4f418a5609 (patch)
tree95315072a0fcdd248accb13290cc2e2d9ae1f00f
parent723e058a74199c3110c26e1d28ba6d2f9b8440b6 (diff)
Possibly fix OSXUniversalTarget with ccache.
-rwxr-xr-xcdist5
1 files changed, 5 insertions, 0 deletions
diff --git a/cdist b/cdist
index b31ee7f..4faa300 100755
--- a/cdist
+++ b/cdist
@@ -880,6 +880,11 @@ class OSXUniversalTarget(OSXTarget):
super().package(project, checkout, output_dir, options, notarize)
+ @Target.ccache.setter
+ def ccache(self, v):
+ for target in self.sub_targets:
+ target.ccache = v
+
class SourceTarget(Target):
"""Build a source .tar.bz2 and .zst"""