diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-12-06 21:08:15 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-12-06 21:08:15 +0100 |
commit | de4b8943bfb40e2f50c9e4e2ee5d39e986317d08 (patch) | |
tree | 42c326797d54bf914641c57fe45acbe5c47b4a29 | |
parent | 5d1922739e852fcc2a143996e88420b09c5dbff9 (diff) | |
download | samba-de4b8943bfb40e2f50c9e4e2ee5d39e986317d08.tar.gz samba-de4b8943bfb40e2f50c9e4e2ee5d39e986317d08.tar.bz2 samba-de4b8943bfb40e2f50c9e4e2ee5d39e986317d08.zip |
Install (platform-independent) python scripts to the PYTHONDIR rather than PYTHONARCHDIR.
-rw-r--r-- | source4/scripting/python/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/wscript_build b/source4/scripting/python/wscript_build index 8879f759ba..73f7ae80ae 100644 --- a/source4/scripting/python/wscript_build +++ b/source4/scripting/python/wscript_build @@ -36,4 +36,4 @@ bld.SAMBA_SCRIPT('samba_python', pattern='samba/**/*.py', installdir='python') -bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False) +bld.INSTALL_WILDCARD('${PYTHONDIR}', 'samba/**/*.py', flat=False) |