From ae446765eb0605d2451bb4dd7c336672bcc7ab0c Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Fri, 15 Jul 2011 01:31:06 +0200 Subject: libsystemd-daemon: support installation in --with-rootlibdir --- autogen.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 55a115d4e3..b2b680a85c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -52,6 +52,10 @@ if type -p colorgcc > /dev/null ; then export CC=colorgcc fi +libdir() { + echo $(cd $1/$(gcc -print-multi-os-directory); pwd) +} + if [ "x$1" = "xam" ] ; then run_versioned automake "$AM_VERSION" -a -c --foreign ./config.status @@ -67,7 +71,13 @@ else run_versioned automake "$AM_VERSION" --copy --foreign --add-missing if [ "x$1" != "xac" ]; then - CFLAGS="$CFLAGS -g -O0" ./configure --sysconfdir=/etc --localstatedir=/var --with-rootdir= --libexecdir=/usr/lib "$@" + CFLAGS="$CFLAGS -g -O0" ./configure \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/lib \ + --libdir=$(libdir /usr/local/lib) \ + --with-rootdir= \ + "$@" make clean fi fi -- cgit v1.2.3-54-g00ecf