From 3bbbac7e9b57b936a8f88beb64ae9c89d6ac8ffc Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 5 Jan 2009 10:31:09 -0500 Subject: We need to export while building when using shared-build or dependencies will not be correctly found. --- BUILD.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILD.txt b/BUILD.txt index 3580f7071..ac66ed4b3 100644 --- a/BUILD.txt +++ b/BUILD.txt @@ -16,6 +16,7 @@ its finally system library directory (ie build as user). I use the following steps to build all pieces. +export LD_LIBRARY_PATH=/tmp/foo/lib pushd talloc; ./autogen.sh && ./configure --with-shared-build-dir=/tmp/foo && make shared-build; popd pushd tdb; ./autogen.sh && ./configure --with-shared-build-dir=/tmp/foo && make shared-build; popd pushd events; ./autogen.sh && ./configure --with-shared-build-dir=/tmp/foo && make shared-build; popd @@ -24,8 +25,8 @@ pushd server; ./autogen.sh && ./configure --with-shared-build-dir=/tmp/foo && ma At this point you can start testing the sssd daemon this way: -export LD_LIBRARY_PATH=/tmp/foo/lib cd server +export LD_LIBRARY_PATH=/tmp/foo/lib ./sbin/sssd -i This will start the sssd daemon in interactive mode. -- cgit