summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-02 00:54:24 +0100
committerCarl Hetherington <cth@carlh.net>2025-11-02 00:54:38 +0100
commiteff442a28cf8dc3fe2ec7cfbbc03b75d00dc06ae (patch)
treee391d4901859750b2afc74629e75346d5d325d93
parente25f27ec38f4aadb2beea43b33b3209e4c528fd0 (diff)
Allow pkgconfig files in lib64 for LocalTarget.
-rwxr-xr-xcdist2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdist b/cdist
index 51195b3..b5716e2 100755
--- a/cdist
+++ b/cdist
@@ -902,7 +902,7 @@ class LocalTarget(Target):
self.distro = None
self.detail = None
self.version = None
- self.set('PKG_CONFIG_PATH', '%s/lib/pkgconfig:%s/bin/pkgconfig' % (self.directory, self.directory))
+ self.set('PKG_CONFIG_PATH', '%s/lib/pkgconfig:%s/lib64/pkgconfig:%s/bin/pkgconfig' % (self.directory, 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)