diff options
author | Simo Sorce <idra@samba.org> | 2009-01-05 10:31:09 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-01-05 10:31:09 -0500 |
commit | 3bbbac7e9b57b936a8f88beb64ae9c89d6ac8ffc (patch) | |
tree | a15ca5a490f7d4a84633acc6c9a7770527409834 /BUILD.txt | |
parent | e78cc2025ac8ceb7e6a8413ad320ba08015de229 (diff) | |
download | sssd-3bbbac7e9b57b936a8f88beb64ae9c89d6ac8ffc.tar.gz sssd-3bbbac7e9b57b936a8f88beb64ae9c89d6ac8ffc.tar.xz sssd-3bbbac7e9b57b936a8f88beb64ae9c89d6ac8ffc.zip |
We need to export while building when using shared-build or dependencies will
not be correctly found.
Diffstat (limited to 'BUILD.txt')
-rw-r--r-- | BUILD.txt | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |