diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-06-10 11:32:27 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-06-10 17:21:26 +1000 |
commit | ae1414e79698c0c506aabd7458c4fbae8cc8fcf5 (patch) | |
tree | 37cf6f9d42d4664c3c221db64d7ff85b8b2e8f13 /buildtools/scripts | |
parent | 91f351568aab728269cdfce3a6cfad8b5785b8d8 (diff) | |
download | samba-ae1414e79698c0c506aabd7458c4fbae8cc8fcf5.tar.gz samba-ae1414e79698c0c506aabd7458c4fbae8cc8fcf5.tar.bz2 samba-ae1414e79698c0c506aabd7458c4fbae8cc8fcf5.zip |
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.waf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index 716ab93270..5fc939c99e 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 |