diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-10-13 22:53:20 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-13 14:06:08 +0200 |
commit | 4e1d9a620b0ebbe9bca89de84f553f580295fc33 (patch) | |
tree | 89285f6c0ef52c04bf237be5f89a20ad3a9ff22d | |
parent | 77036483488c67ab498a1b5d19320a78dcfdc450 (diff) | |
download | samba-4e1d9a620b0ebbe9bca89de84f553f580295fc33.tar.gz samba-4e1d9a620b0ebbe9bca89de84f553f580295fc33.tar.bz2 samba-4e1d9a620b0ebbe9bca89de84f553f580295fc33.zip |
build: run perl generators at autogen.sh time
-rwxr-xr-x | source3/autogen.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/autogen.sh b/source3/autogen.sh index d9f6030900..e5aea3248e 100755 --- a/source3/autogen.sh +++ b/source3/autogen.sh @@ -86,6 +86,12 @@ else echo "some autconf tests might not work properly" fi +perl ../script/mkparamdefs.pl ../lib/param/param_functions.c --file ../lib/param/param_local.h --generate-scope=LOCAL +perl ../script/mkparamdefs.pl ../lib/param/loadparm.c --file ../lib/param/param_global.h --generate-scope=GLOBAL +perl ../script/mkparamdefs.pl param/loadparm.c --file param/param_global.h --generate-scope=GLOBAL +perl ../source4/script/mkproto.pl ../lib/param/loadparm.c --public ../lib/param/param_proto.h --private ../lib/param/param_proto.h +perl ../script/mks3param.pl ../lib/param/loadparm.c --file ../lib/param/s3_param.h + echo "Now run ./configure (or ./configure.developer) and then make." exit 0 |