summaryrefslogtreecommitdiffstats
path: root/BUILD.txt
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.txt')
-rw-r--r--BUILD.txt3
1 files changed, 2 insertions, 1 deletions
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.