diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-02-23 08:28:29 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:35 +1000 |
commit | 1cfc330156fd3afb6972f6461939817f56e9d435 (patch) | |
tree | 7d29f9d999493b105291ee48beef48223595aafd | |
parent | 186e7115ab8b418fae0bdd7bb9fca369a6d6043f (diff) | |
download | samba-1cfc330156fd3afb6972f6461939817f56e9d435.tar.gz samba-1cfc330156fd3afb6972f6461939817f56e9d435.tar.bz2 samba-1cfc330156fd3afb6972f6461939817f56e9d435.zip |
build: allow override of config.h location
-rw-r--r-- | lib/replace/wafsamba.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/wafsamba.py b/lib/replace/wafsamba.py index e1fae62119..96e8e7645d 100644 --- a/lib/replace/wafsamba.py +++ b/lib/replace/wafsamba.py @@ -53,7 +53,7 @@ def CHECK_FUNCS_IN(conf, list, library): @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(path, top=True) + conf.write_config_header(path) ############################################################## |