From 1ee19592f01ac63f3374160abe56fd60bbf75413 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 27 Mar 2010 21:28:59 +1100 Subject: s4-waf: move the gnu dirs check to the generic wafsamba code --- buildtools/wafsamba/wscript | 2 ++ source4/dynconfig/wscript | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index 375c119070..f657b6d96a 100644 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -6,6 +6,7 @@ import Options, os, preproc def set_options(opt): opt.tool_options('compiler_cc') + opt.tool_options('gnu_dirs') opt.add_option('--libdir', help=("object code libraries [PREFIX/lib"), action="store", dest='LIBDIR', default='${PREFIX}/lib') @@ -54,6 +55,7 @@ def configure(conf): conf.SETUP_CONFIGURE_CACHE(Options.options.enable_configure_cache) # load our local waf extensions + conf.check_tool('gnu_dirs') conf.check_tool('wafsamba') conf.CHECK_CC_ENV() diff --git a/source4/dynconfig/wscript b/source4/dynconfig/wscript index 46a3040f80..b676069d9b 100644 --- a/source4/dynconfig/wscript +++ b/source4/dynconfig/wscript @@ -44,7 +44,6 @@ def get_varname(v): def set_options(opt): # get all the basic GNU options from the gnu_dirs tool - opt.tool_options('gnu_dirs') for option in dir_options.keys(): default = dir_options[option][0] help = dir_options[option][1] @@ -55,7 +54,6 @@ def set_options(opt): def configure(conf): # get all the basic GNU options from the gnu_dirs tool - conf.check_tool('gnu_dirs') for option in dir_options.keys(): varname = get_varname(option) value = getattr(Options.options, varname, None) -- cgit