diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-31 18:03:39 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:20 +1000 |
commit | cd104102b9ff90c123342a588d2578cf9d5637ed (patch) | |
tree | b3dcb949efd9de648e3cf93ed021bb63d711960b /buildtools | |
parent | dab7b265282aac2fb539171b4f4bdec11e2a3c8c (diff) | |
download | samba-cd104102b9ff90c123342a588d2578cf9d5637ed.tar.gz samba-cd104102b9ff90c123342a588d2578cf9d5637ed.tar.bz2 samba-cd104102b9ff90c123342a588d2578cf9d5637ed.zip |
build: don't define vars in config.h for CONFIG_PATH()
we don't want paths in config.h, as that just causes full rebuilds
when you change --prefix. Better to use cflags= on the right subsystem
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_autoconf.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index 4ee0852b75..d1b43d4e8a 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -561,8 +561,6 @@ def CONFIG_PATH(conf, name, default): conf.env[name] = default else: conf.env[name] = conf.env['PREFIX'] + default - conf.define(name, conf.env[name], quote=True) - @conf def ADD_CFLAGS(conf, flags, testflags=False): |