From: Michael Adam Date: Mon, 25 Aug 2014 21:57:23 +0000 (+0200) Subject: pidl: fix the perl module search path (use lib ...) when installing pidl. X-Git-Tag: samba-4.0.23~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a054211078378f6f7191ff9330714008cba4e3f;p=thirdparty%2Fsamba.git 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 (cherry picked from commit b537c5a340bae2accbf35a4ec5eab7074b90f0b1) --- diff --git a/pidl/wscript b/pidl/wscript index c4edf57ddbb..0d7626c89f5 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')