diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-11-02 00:54:24 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-11-02 00:54:38 +0100 |
| commit | eff442a28cf8dc3fe2ec7cfbbc03b75d00dc06ae (patch) | |
| tree | e391d4901859750b2afc74629e75346d5d325d93 | |
| parent | e25f27ec38f4aadb2beea43b33b3209e4c528fd0 (diff) | |
Allow pkgconfig files in lib64 for LocalTarget.
| -rwxr-xr-x | cdist | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
