summaryrefslogtreecommitdiff
path: root/buildtools/scripts
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-06-10 11:32:27 +1000
committerAndrew Tridgell <tridge@samba.org>2011-06-10 17:21:26 +1000
commitae1414e79698c0c506aabd7458c4fbae8cc8fcf5 (patch)
tree37cf6f9d42d4664c3c221db64d7ff85b8b2e8f13 /buildtools/scripts
parent91f351568aab728269cdfce3a6cfad8b5785b8d8 (diff)
downloadsamba-ae1414e79698c0c506aabd7458c4fbae8cc8fcf5.tar.gz
waf: fixed 'make bin/XXX' for the remaining binaries
this fixes 'make bin/smbd' to work correctly with the waf build. It didn't work before as smbd is actually 'smbd/smbd' internally and we tried to use the target name 'smbd'. The new approach reads the symlink to get the right target. This also speeds up the null build by quite a lot
Diffstat (limited to 'buildtools/scripts')
-rw-r--r--buildtools/scripts/Makefile.waf2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf
index 716ab932706..5fc939c99e0 100644
--- a/buildtools/scripts/Makefile.waf
+++ b/buildtools/scripts/Makefile.waf
@@ -62,7 +62,7 @@ ctags:
$(WAF) ctags
bin/%:: FORCE
- $(WAF) --targets=`basename $@`
+ $(WAF) --targets=$@
FORCE:
configure: autogen-waf.sh BUILDTOOLS/scripts/configure.waf