diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-27 19:12:10 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:11 +1000 |
commit | 5b572f1bd8505b0e2d1758d868ae0dec80c5719d (patch) | |
tree | 512b33cd912fccd761a5022f536ddc4e216bde02 | |
parent | dadc24fb0f3c8abe29113fa3576533f2e7902f16 (diff) | |
download | samba-5b572f1bd8505b0e2d1758d868ae0dec80c5719d.tar.gz samba-5b572f1bd8505b0e2d1758d868ae0dec80c5719d.tar.bz2 samba-5b572f1bd8505b0e2d1758d868ae0dec80c5719d.zip |
build: fixed the python path in installed python scripts
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 2a79f702ef..1d0b1ba3c1 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -641,14 +641,32 @@ def SAMBA_SCRIPT(bld, name, pattern, installdir, installname=None): Build.BuildContext.SAMBA_SCRIPT = SAMBA_SCRIPT +def install_file(bld, destdir, file, chmod=0644, flat=False, + python_fixup=False, destname=None): + '''install a file''' + destdir = bld.EXPAND_VARIABLES(destdir) + if not destname: + destname = file + if flat: + destname = os.path.basename(destname) + dest = os.path.join(destdir, destname) + if python_fixup: + # fixup the python path it will use to find Samba modules + inst_file = file + '.inst' + bld.SAMBA_GENERATOR('python_%s' % destname, + rule="sed 's|\(sys.path.insert.*\)bin/python\(.*\)$|\\1${PYTHONDIR}\\2|g' < ${SRC} > ${TGT}", + source=file, + target=inst_file) + file = inst_file + bld.install_as(dest, file, chmod=chmod) + + def INSTALL_FILES(bld, destdir, files, chmod=0644, flat=False, python_fixup=False, destname=None): '''install a set of files''' - destdir = bld.EXPAND_VARIABLES(destdir) - if destname: - bld.install_as(os.path.join(destdir,destname), files, chmod=chmod) - else: - bld.install_files(destdir, files, chmod=chmod, relative_trick=not flat) + for f in TO_LIST(files): + install_file(bld, destdir, f, chmod=chmod, flat=flat, + python_fixup=python_fixup, destname=destname) Build.BuildContext.INSTALL_FILES = INSTALL_FILES |