From: Amit Bose Date: Fri, 9 Jan 2015 11:27:04 +0000 (+0100) Subject: pkg-config: Fix Cflags in package-config files X-Git-Tag: v2.4.0~704 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=04009853bbad2220e6864429b135bdc51539a621 pkg-config: Fix Cflags in package-config files Cflags in pkg-config files sets the include path to $PREFIX/openflow, $PREFIX/openvswitch. This makes the including source files use the files like include instead of include Signed-off-by: Amit Bose --- diff --git a/lib/libopenvswitch.pc.in b/lib/libopenvswitch.pc.in index 2a3f2ca7b..4c40a4caf 100644 --- a/lib/libopenvswitch.pc.in +++ b/lib/libopenvswitch.pc.in @@ -8,4 +8,4 @@ Description: Open vSwitch library Version: @VERSION@ Libs: -L${libdir} -lopenvswitch Libs.private: @LIBS@ -Cflags: -I${includedir}/openvswitch +Cflags: -I${includedir} diff --git a/lib/libsflow.pc.in b/lib/libsflow.pc.in index e70a2b704..34bb7e3d6 100644 --- a/lib/libsflow.pc.in +++ b/lib/libsflow.pc.in @@ -8,4 +8,4 @@ Description: sFlow library of Open vSwitch Version: @VERSION@ Libs: -L${libdir} -lsflow Libs.private: @LIBS@ -Cflags: -I${includedir}/openvswitch +Cflags: -I${includedir} diff --git a/ofproto/libofproto.pc.in b/ofproto/libofproto.pc.in index dbedccec3..49894fb69 100644 --- a/ofproto/libofproto.pc.in +++ b/ofproto/libofproto.pc.in @@ -8,4 +8,4 @@ Description: OpenFlow library of Open vSwitch Version: @VERSION@ Libs: -L${libdir} -lofproto Libs.private: @LIBS@ -Cflags: -I${includedir}/openflow +Cflags: -I${includedir} diff --git a/ovsdb/libovsdb.pc.in b/ovsdb/libovsdb.pc.in index b86536f84..f4133865d 100644 --- a/ovsdb/libovsdb.pc.in +++ b/ovsdb/libovsdb.pc.in @@ -8,4 +8,4 @@ Description: OVSDB library of Open vSwitch Version: @VERSION@ Libs: -L${libdir} -lovsdb Libs.private: @LIBS@ -Cflags: -I${includedir}/openvswitch +Cflags: -I${includedir}