summaryrefslogtreecommitdiff
path: root/dev-libs/gom/files/0.3.2-fix-pkgconfig.patch
blob: 447c91421cc93d225689fdb707a49c1a26403c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From 07c35149964c7258e52effa374d877a8f2f102e8 Mon Sep 17 00:00:00 2001
From: Alexander Tsoy <alexander@tsoy.me>
Date: Fri, 29 Jul 2016 03:18:03 +0300
Subject: [PATCH] build: Replace hardcoded values in pkg-config file

https://bugzilla.gnome.org/show_bug.cgi?id=769291
---
 data/gom-1.0.pc.in | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/data/gom-1.0.pc.in b/data/gom-1.0.pc.in
index ce19de6..6edc841 100644
--- a/data/gom-1.0.pc.in
+++ b/data/gom-1.0.pc.in
@@ -1,11 +1,11 @@
 prefix=@prefix@
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${exec_prefix}/include
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
 
 Name: Gom
 Description: GObject Data Mapper
 Version: @VERSION@
-Libs: -L${libdir} -lgom-1.0
-Cflags: -I${includedir}/gom-1.0
+Libs: -L${libdir} -lgom-@GOM_API_VERSION@
+Cflags: -I${includedir}/gom-@GOM_API_VERSION@
 Requires: gobject-2.0
-- 
2.17.0