summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-06-17 21:00:22 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-06-17 21:00:22 +0200
commit2dd921c7746b810c50bb1fb97168b8b81013aaef (patch)
tree3987f115fca140758e6f44871810961199e2937f
parent8b82e3b1e3eccf3f3b75aa138c409cfb0da2dc45 (diff)
downloadsamba-2dd921c7746b810c50bb1fb97168b8b81013aaef.tar.gz
Only install an explicit set of scripts during "make install", rather than
whatever happens to be in the source tree.
-rw-r--r--source4/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/source4/Makefile b/source4/Makefile
index 2a3ad2def1d..62fb9d4422d 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)