From e9874bdf9ef79e0e8c115af14d6727e6624e4d20 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 17 Jan 2012 12:51:57 +0100 Subject: dynconfig: overwrite --with-privatelibdir as a Samba option metze Autobuild-User: Stefan Metzmacher Autobuild-Date: Tue Jan 17 17:17:56 CET 2012 on sn-devel-104 --- dynconfig/wscript | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'dynconfig') diff --git a/dynconfig/wscript b/dynconfig/wscript index 0628326043..517f76e7e7 100755 --- a/dynconfig/wscript +++ b/dynconfig/wscript @@ -136,6 +136,13 @@ dynconfig = { 'STD-PATH': '${DATADIR}/codepages', 'FHS-PATH': '${DATADIR}/samba/codepages', }, + 'PRIVATELIBDIR' : { + 'STD-PATH': '${LIBDIR}/private', + 'FHS-PATH': '${LIBDIR}/samba', + 'OPTION': '--with-privatelibdir', + 'HELPTEXT': 'Which directory to use for private Samba libraries', + 'OVERWRITE': True, + }, 'MODULESDIR' : { 'STD-PATH': '${LIBDIR}', 'FHS-PATH': '${LIBDIR}/samba', @@ -249,7 +256,7 @@ def set_options(opt): opt.parser.formatter = SambaIndentedHelpFormatter() opt.parser.formatter.width=Utils.get_term_cols() - for k in ('--with-modulesdir'): + for k in ('--with-privatelibdir', '--with-modulesdir'): option = opt.parser.get_option(k) if option: opt.parser.remove_option(k) -- cgit