From: Carl Hetherington Date: Fri, 29 Mar 2024 21:18:55 +0000 (+0100) Subject: Fix LocalTarget to work better (mostly making it work like a normal Linux target). X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=1ef50e8a03d559f3be3a07697a238639ac67fc24;p=cdist.git Fix LocalTarget to work better (mostly making it work like a normal Linux target). --- diff --git a/cdist b/cdist index 9c1d1bd..dc64605 100755 --- a/cdist +++ b/cdist @@ -915,12 +915,17 @@ class SourceTarget(Target): class LocalTarget(Target): """Build on the local machine with its environment""" - def __init__(self, work): - super(LocalTarget, self).__init__('local', work) + def __init__(self, work, dependencies_only=False): + super(LocalTarget, self).__init__('linux', work, dependencies_only=dependencies_only) # Hack around ffmpeg.git which sees that the target isn't windows/osx and then assumes # distro will be there. self.distro = None + self.detail = None + self.bits = 64 self.set('PKG_CONFIG_PATH', '%s/lib/pkgconfig:%s/bin/pkgconfig' % (self.directory, self.directory)) + self.append_with_colon('LD_LIBRARY_PATH', '%s/lib' % self.directory) + self.set('CXXFLAGS', '-I%s/include' % self.directory) + self.set('LINKFLAGS', '-L%s/lib' % self.directory) def command(self, c): log_normal('host -> %s' % c)