diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-05-09 11:49:10 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2014-05-10 01:37:33 +0200 |
commit | cf75ef9f73f2cdbf2a039bbc9468f5da6a14834e (patch) | |
tree | 8805062026ccf42a56262520a634f58a664684f2 /pidl/lib | |
parent | d18ee9e4b6f4c9a24b555c111e08396012c1755a (diff) | |
download | samba-cf75ef9f73f2cdbf2a039bbc9468f5da6a14834e.tar.gz |
pidl/lib/wscript_build: make use of PERL_LIB_INSTALL_DIR
Bug: https://bugzilla.samba.org/show_bug.cgi?id=10472
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Sat May 10 01:37:33 CEST 2014 on sn-devel-104
Diffstat (limited to 'pidl/lib')
-rw-r--r-- | pidl/lib/wscript_build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pidl/lib/wscript_build b/pidl/lib/wscript_build index 5023e070149..54b3170c4e2 100644 --- a/pidl/lib/wscript_build +++ b/pidl/lib/wscript_build @@ -1,7 +1,7 @@ #!/usr/bin/env python # install the pidl modules -bld.INSTALL_FILES(bld.env.PERL_VENDORLIB_DIR, +bld.INSTALL_FILES(bld.env.PERL_LIB_INSTALL_DIR, ''' Parse/Pidl.pm Parse/Pidl/Samba4.pm @@ -32,6 +32,6 @@ bld.INSTALL_FILES(bld.env.PERL_VENDORLIB_DIR, flat=False) if not bld.CONFIG_SET('USING_SYSTEM_PARSE_YAPP_DRIVER'): - bld.INSTALL_FILES(bld.env.PERL_VENDORLIB_DIR, + bld.INSTALL_FILES(bld.env.PERL_LIB_INSTALL_DIR, 'Parse/Yapp/Driver.pm', flat=False) |