summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_autoconf.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-31 18:03:39 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:20 +1000
commitcd104102b9ff90c123342a588d2578cf9d5637ed (patch)
treeb3dcb949efd9de648e3cf93ed021bb63d711960b /buildtools/wafsamba/samba_autoconf.py
parentdab7b265282aac2fb539171b4f4bdec11e2a3c8c (diff)
downloadsamba-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/wafsamba/samba_autoconf.py')
-rw-r--r--buildtools/wafsamba/samba_autoconf.py2
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):