diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-03-06 18:07:20 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-03-10 21:31:52 +0100 |
commit | 4c292c8e622ba293c10a4dc4e5799b588699810a (patch) | |
tree | b7f0ebad6210f93da924b4ab89e26cc5735a3cea /lib | |
parent | 16ecda3f11e7398bf3d493b89abb5afabc714f1a (diff) | |
download | samba-4c292c8e622ba293c10a4dc4e5799b588699810a.tar.gz samba-4c292c8e622ba293c10a4dc4e5799b588699810a.tar.bz2 samba-4c292c8e622ba293c10a4dc4e5799b588699810a.zip |
tevent: Install tevent.py into PYTHONARCHDIR rather than PYTHONDIR for consistency with other Samba scripts.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tevent/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/wscript b/lib/tevent/wscript index b4bcb71df8..d5d6791b62 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -103,7 +103,7 @@ def build(bld): pattern='tevent.py', installdir='python') - bld.INSTALL_WILDCARD('${PYTHONDIR}', 'tevent.py', flat=False) + bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py', flat=False) def test(ctx): |