summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-10-30 21:19:35 +0100
committerCarl Hetherington <cth@carlh.net>2025-10-30 21:34:46 +0100
commitbeecbeaaa9e5799ec7ec30f44453f535a7dae249 (patch)
treef367248f0d0f57910f2bfc903ea962b56a741702
parenta31b7c493fb51e89623f9bf73190f03a3bc2071e (diff)
Use x86 LinuxLocalTarget for 'local'.
-rwxr-xr-xcdist2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdist b/cdist
index e28dbc5..3431ca2 100755
--- a/cdist
+++ b/cdist
@@ -970,7 +970,7 @@ def target_factory(args):
elif s == 'appimage-old':
target = AppImageTarget(args.work, ubuntu_version='14.04')
elif s == 'local':
- target = LocalTarget(args.work, args.dependencies_only)
+ target = LinuxLocalTarget(args.work, args.dependencies_only, cpu='x86')
if target is None:
raise Error("Bad target `%s'" % s)