From 22d7cd12430bf4817d5ae38fa970988660f33d60 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Wed, 3 Oct 2018 18:06:33 +0200 Subject: [PATCH] meson: install compat ethumb_client.pc file in autotools this was not having the same naming convetion than in meson right now. This installs a duplicated .pc file, so the one with the different name can be dropped at some point. Fix terminology compilation. Differential Revision: https://phab.enlightenment.org/D7132 --- meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/meson.build b/meson.build index 72c48b8486..0f026b3c5c 100644 --- a/meson.build +++ b/meson.build @@ -267,6 +267,15 @@ foreach package : subprojects libraries : tmp_pub_deps, requires : package[8], ) + if package_name == 'ethumb_client' + pkgconfig.generate(tmp_lib, + name : package_name, + subdirs : package_version_name, + version : version_major + '.' + version_minor, + libraries : tmp_pub_deps, + requires : package[8], + ) + endif endif else message(package_name+' disabled!')