summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2018-07-31 15:05:17 +0200
committerWim Taymans <wtaymans@redhat.com>2018-08-14 14:41:01 +0200
commita5a711bc38e9d197885763c17fab4d4ea0d15775 (patch)
treeabd6cafbccd3d257c3ba429d552bab3896db809e
parent7bb0efa88777e4bf8f7f801185308665e407678b (diff)
add apiversion to pkgconfig as well
-rw-r--r--pkgconfig/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build
index 9b448aa1..babd2896 100644
--- a/pkgconfig/meson.build
+++ b/pkgconfig/meson.build
@@ -17,7 +17,7 @@ pkg_files = [
foreach p : pkg_files
infile = p + '.pc.in'
- outfile = p + '-0.1.pc'
+ outfile = p + '-@0@.pc'.format(apiversion)
configure_file(input : infile,
output : outfile,
configuration : pkgconf,