mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-06 02:54:40 +00:00

This patch fixes some makefile/specfile issues when running rpmbuild with the distributed lxc specfile: - fixes usage of installation directories for config files, rootfs, templates and lxc-init so that they're calculated at make time instead of configure time. Thanks to this, all installed items go under $RPM_BUILD_ROOT when running rpmbuild - introduce --disable-rpath option to configure to avoid check-rpaths errors when building non-root. - introduce a lxc-libs package in the default spec file to allow concurrent installation of 32 bit and 64 bit libraries. v2: - fix circular reference in lxc.pc - ship lxc.pc with lxc-devel Signed-off-by: Greg Kurz <gkurz@fr.ibm.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
13 lines
278 B
PkgConfig
13 lines
278 B
PkgConfig
bindir=@BINDIR@
|
|
libdir=@LIBDIR@
|
|
localstatedir=@LOCALSTATEDIR@
|
|
includedir=@INCLUDEDIR@
|
|
rootfsmountdir=@LXCROOTFSMOUNT@
|
|
|
|
Name: lxc
|
|
Description: linux container tools
|
|
Version: @PACKAGE_VERSION@
|
|
URL: http://lxc.sourceforge.net
|
|
Libs: -L${libdir} -llxc -lutil
|
|
Cflags: -I${includedir}
|