diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-06-17 21:00:22 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-17 21:00:22 +0200 |
commit | 2dd921c7746b810c50bb1fb97168b8b81013aaef (patch) | |
tree | 3987f115fca140758e6f44871810961199e2937f /source4 | |
parent | 8b82e3b1e3eccf3f3b75aa138c409cfb0da2dc45 (diff) | |
download | samba-2dd921c7746b810c50bb1fb97168b8b81013aaef.tar.gz samba-2dd921c7746b810c50bb1fb97168b8b81013aaef.tar.bz2 samba-2dd921c7746b810c50bb1fb97168b8b81013aaef.zip |
Only install an explicit set of scripts during "make install", rather than
whatever happens to be in the source tree.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile index 2a3ad2def1..62fb9d4422 100644 --- a/source4/Makefile +++ b/source4/Makefile @@ -111,7 +111,14 @@ libgpodir := libgpo include data.mk -$(foreach SCRIPT,$(wildcard scripting/bin/*),$(eval $(call binary_install_template,$(SCRIPT)))) +INSTALL_SCRIPTS = $(addprefix scripting/bin/, \ + autoidl \ + samba3dump \ + rpcclient \ + smbstatus \ + epdump) + +$(foreach SCRIPT,$(INSTALL_SCRIPTS),$(eval $(call binary_install_template,$(SCRIPT)))) $(DESTDIR)$(bindir)/%: scripting/bin/% installdirs @mkdir -p $(@D) |