diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-16 16:15:21 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-29 13:42:59 +0100 |
commit | 09447777d0c1a00daced1c63c3614136acfbe53f (patch) | |
tree | a83cc9448cef122b3ecdbadd71ae3af6fc5a7fe9 /source4 | |
parent | de4a2214efb3fcc1aa04664371983dbc768eaf79 (diff) | |
download | samba-09447777d0c1a00daced1c63c3614136acfbe53f.tar.gz samba-09447777d0c1a00daced1c63c3614136acfbe53f.tar.bz2 samba-09447777d0c1a00daced1c63c3614136acfbe53f.zip |
use gmake to handle .py file copies.
(This used to be commit d54421a9eeadbd76791917c5e3c460c897259ede)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/build/smb_build/makefile.pm | 4 | ||||
-rw-r--r-- | source4/scripting/python/config.mk | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 29da771353..fa2d7883eb 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -341,9 +341,7 @@ sub PythonFiles($$) foreach (@{$ctx->{PYTHON_FILES}}) { my $target = "bin/python/".basename($_); my $source = output::add_dir_str($ctx->{BASEDIR}, $_); - $self->output("$target: $source\n" . - "\tmkdir -p \$(builddir)/bin/python\n" . - "\tcp $source \$@\n\n"); + $self->output("$target: $source\n\n"); push (@{$self->{python_pys}}, $target); } } diff --git a/source4/scripting/python/config.mk b/source4/scripting/python/config.mk index 0d47c8c542..b68abdba5e 100644 --- a/source4/scripting/python/config.mk +++ b/source4/scripting/python/config.mk @@ -35,6 +35,10 @@ PYDOCTOR_MODULES=bin/python/ldb.py bin/python/auth.py bin/python/credentials.py pydoctor:: pythonmods LD_LIBRARY_PATH=bin/shared PYTHONPATH=bin/python pydoctor --project-name=Samba --make-html --docformat=restructuredtext --add-package scripting/python/samba/ $(addprefix --add-module , $(PYDOCTOR_MODULES)) +bin/python/%.py: + mkdir -p $(@D) + cp $< $@ + installpython:: pythonmods @$(SHELL) $(srcdir)/script/installpython.sh \ $(INSTALLPERMS) \ |