summaryrefslogtreecommitdiff
path: root/howto4.txt
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2010-03-24 16:47:24 +0300
committerMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2010-03-29 19:50:46 +0200
commit53a2982970631e031e2c83b90721d32211943580 (patch)
tree332fca425f4fbcf28055de3810973d1c9ec7f648 /howto4.txt
parentda68151017c0741768f92b88de264bf800e729f0 (diff)
downloadsamba-53a2982970631e031e2c83b90721d32211943580.tar.gz
samba-53a2982970631e031e2c83b90721d32211943580.tar.bz2
samba-53a2982970631e031e2c83b90721d32211943580.zip
s4: complete the build instruction because the problem with the idl_full cames very often
Diffstat (limited to 'howto4.txt')
-rw-r--r--howto4.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/howto4.txt b/howto4.txt
index e33d040324..af82548d3a 100644
--- a/howto4.txt
+++ b/howto4.txt
@@ -59,6 +59,24 @@ Run this::
$ ./configure
$ make
+
+Step 2bis: recompile Samba4
+---------------------------
+
+This part only apply for those who are recompiling samba 4 after updating the code (with rsync or git).
+
+Due to some imperfection in the our build system it recommended to do the following sequence after updating the code:
+
+ $ cd samba4/source
+ $ make clean
+ $ ./autogen.sh
+ $ ./configure
+ $ make idl_full
+ $ make
+
+Not all the steps are needed everytime but doing so insure that you won't have old compiled objects mixed with new code.
+It also insure that change in the idl are correctly catched up.
+
Step 3: install Samba4
----------------------