diff options
author | Michael Adam <obnox@samba.org> | 2014-08-25 23:57:23 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2014-11-17 21:21:13 +0100 |
commit | 6feada1d984d0f5c8e9b12842a074cab85d6ee4a (patch) | |
tree | 474a4e3cddb035fe9a970c8bbe9ad035d69bfd7a | |
parent | 50f3e565427ac2d31c9641aa02ff94103a2f07a3 (diff) | |
download | samba-6feada1d984d0f5c8e9b12842a074cab85d6ee4a.tar.gz |
pidl: fix the perl module search path (use lib ...) when installing pidl.
This way, pidl can also run with modules installed under the $prefix.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=10472
Signed-off-by: Michael Adam <obnox@samba.org>
(cherry picked from commit b537c5a340bae2accbf35a4ec5eab7074b90f0b1)
-rw-r--r-- | pidl/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/wscript b/pidl/wscript index c4edf57ddb..0d7626c89f 100644 --- a/pidl/wscript +++ b/pidl/wscript @@ -43,7 +43,7 @@ def configure(conf): conf.find_program('pod2man', var='POD2MAN') def build(bld): - bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=MODE_755) + bld.INSTALL_FILES('${BINDIR}', 'pidl', chmod=MODE_755, perl_fixup=True) bld.RECURSE('lib') |