Add custom_install_dir to ld path in pkgconfig module

pull/601/head
Ippytraxx 9 years ago
parent 68dbbeb78f
commit 8ea17322e4
  1. 2
      mesonbuild/modules/pkgconfig.py

@ -43,6 +43,8 @@ class PkgConfigModule:
ofile.write('Libraries.private: {}\n'.format(' '.join(priv_libs)))
ofile.write('Libs: -L${libdir} ')
for l in libraries:
if l.custom_install_dir:
ofile.write('-L${prefix}/%s ' % l.custom_install_dir)
ofile.write('-l%s ' % l.name)
ofile.write('\n')
ofile.write('CFlags: ')

Loading…
Cancel
Save