diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-02-23 08:09:46 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:35 +1000 |
commit | 13cbd9f919a3cf6ea83cdc80c3e6891d9d276fe4 (patch) | |
tree | cf0b2a3a48c7887c7aaf137477a6dabc14840c9e /lib/replace | |
parent | 4ed59b826c9cbf05542faadc1f29544b2613781a (diff) | |
download | samba-13cbd9f919a3cf6ea83cdc80c3e6891d9d276fe4.tar.gz samba-13cbd9f919a3cf6ea83cdc80c3e6891d9d276fe4.tar.bz2 samba-13cbd9f919a3cf6ea83cdc80c3e6891d9d276fe4.zip |
build: s4 wants config.h in include/
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/wafsamba.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/wafsamba.py b/lib/replace/wafsamba.py index ffa013de22..e1fae62119 100644 --- a/lib/replace/wafsamba.py +++ b/lib/replace/wafsamba.py @@ -51,9 +51,9 @@ def CHECK_FUNCS_IN(conf, list, library): ################################################# # write out config.h in the right directory @conf -def SAMBA_CONFIG_H(conf): +def SAMBA_CONFIG_H(conf, path='config.h'): if os.path.normpath(conf.curdir) == os.path.normpath(os.environ.get('PWD')): - conf.write_config_header('config.h', top=True) + conf.write_config_header(path, top=True) ############################################################## |