wafsamba: install Python modules back to bin/python, not bin/python_modules
[bbaumbach/samba.git] / buildtools / wafsamba / wafsamba.py
index 98cfdcebe6cfa679f557058a04a57c76ae1752a6..7aa6b37924951d937456a708ecbe320f3613b43e 100644 (file)
@@ -65,7 +65,7 @@ def SAMBA_BUILD_ENV(conf):
     # this allows all of the bin/shared and bin/python targets
     # to be expressed in terms of build directory paths
     mkdir_p(os.path.join(conf.env.BUILD_DIRECTORY, 'default'))
-    for (source, target) in [('shared', 'shared'), ('modules', 'modules'), ('python', 'python_modules')]:
+    for (source, target) in [('shared', 'shared'), ('modules', 'modules'), ('python', 'python')]:
         link_target = os.path.join(conf.env.BUILD_DIRECTORY, 'default/' + target)
         if not os.path.lexists(link_target):
             os.symlink('../' + source, link_target)