From: Stefan Metzmacher Date: Tue, 17 Jan 2012 11:51:57 +0000 (+0100) Subject: dynconfig: overwrite --with-privatelibdir as a Samba option X-Git-Tag: tevent-0.9.15~354 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9874bdf9ef79e0e8c115af14d6727e6624e4d20;p=thirdparty%2Fsamba.git 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 --- diff --git a/dynconfig/wscript b/dynconfig/wscript index 06283260430..517f76e7e7f 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)