Commit 6f8db460 by dlezcano

Hard code localstatedir in the scripts. pkgconfig is too difficult to handle

between 32bits and 64bits architecture and different pkgconfig conflict.
parent 0387b7a0
#!/bin/bash
lxcpath=$(PKG_CONFIG_PATH=/usr/lib/pkgconfig pkg-config --variable=localstatedir lxc)/lxc
prefix=@prefix@
lxcpath=@localstatedir@/lxc
if [ ! -r $lxcpath ]; then
exit 0
......
#!/bin/bash
# set -ex
lxcpath=$(PKG_CONFIG_PATH=/usr/lib/pkgconfig pkg-config --variable=localstatedir lxc)/lxc
prefix=@prefix@
lxcpath=@localstatedir@/lxc
if [ ! -r $lxcpath ]; then
exit 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment