diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-05-14 15:18:37 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:35 -0500 |
commit | d9253685914e22dd39b7b73014feaf2e947185ff (patch) | |
tree | b2d3d0b4297b00a59fc4049e6f1e3b861d5abaff | |
parent | e0f4b5088e6ca3e142d6ceb08aa77a2f7f617844 (diff) | |
download | samba-d9253685914e22dd39b7b73014feaf2e947185ff.tar.gz samba-d9253685914e22dd39b7b73014feaf2e947185ff.tar.bz2 samba-d9253685914e22dd39b7b73014feaf2e947185ff.zip |
Remove unnecesarily complicated call to the shell
(This used to be commit d32365e03d92a3951b5d3d8fb6b4c3526710431c)
-rw-r--r-- | docs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile index 2820089ac4..62da841a59 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -246,7 +246,7 @@ $(TEXINFODIR)/%.info: $(TEXINFODIR)/%.texi # Manpages $(MANPAGEDIR3)/smb.conf.5.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/parameters.service.xml $(SMBDOTCONFDOC)/parameters.global.xml -$(SMBDOTCONFDOC)/parameters.all.xml: $(shell find $(SMBDOTCONFDOC) -type f -name '*.xml' -mindepth 2 | sort -t/ -k3 | xargs) $(SMBDOTCONFDOC)/generate-file-list.sh +$(SMBDOTCONFDOC)/parameters.all.xml: $(wildcard $(SMBDOTCONFDOC)/*/*.xml) $(SMBDOTCONFDOC)/generate-file-list.sh $(SMBDOTCONFDOC)/generate-file-list.sh $(SMBDOTCONFDOC) > $@ $(SMBDOTCONFDOC)/parameters.global.xml: $(SMBDOTCONFDOC)/parameters.all.xml $(SMBDOTCONFDOC)/generate-context.xsl |