From: Daniel Lezcano Date: Wed, 10 Jun 2009 17:04:41 +0000 (+0200) Subject: remove pkg-config dependency from lxc X-Git-Tag: lxc_0_6_3~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbbf8b4ecb95f3f55327b12d66e1727d2c559270;p=thirdparty%2Flxc.git remove pkg-config dependency from lxc Stupid me, we don't want to add a dependency to an external tool as the library has to be standalone. Just let lxc to define a .pc file, so the upper layer will find the needed informations to use it. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/lxc-version.in b/src/lxc/lxc-version.in index 190408e63..dcc88b21b 100644 --- a/src/lxc/lxc-version.in +++ b/src/lxc/lxc-version.in @@ -1,4 +1,3 @@ #!/bin/bash -export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:@DATADIR@/pkgconfig -echo "lxc version: $(pkg-config --modversion lxc)" +echo "lxc version: @LXC_MAJOR_VERSION@.@LXC_MINOR_VERSION@.@LXC_MICRO_VERSION@"