From 18926e5907ac91881fe5b8cf35193c4bc010500a Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 14 Feb 2011 19:46:42 -0500 Subject: Fix private libdir and codepages paths The private libraries need to be arch specific as well. With --enable-fhs the codepages should go in /usr/share/samba and not in /usr/lib{64}/samba as they are data files not libraries. Autobuild-User: Simo Sorce Autobuild-Date: Tue Feb 15 04:22:37 CET 2011 on sn-devel-104 --- buildtools/wafsamba/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 buildtools/wafsamba/wscript (limited to 'buildtools') diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript old mode 100644 new mode 100755 index ad5b938df5..4f93bb1793 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -277,7 +277,7 @@ def configure(conf): conf.env.RPATH_ON_INSTALL = (conf.env.RPATH_ON_BUILD and not Options.options.disable_rpath_install) if not conf.env.PRIVATELIBDIR: - conf.env.PRIVATELIBDIR = '${PREFIX}/lib/%s' % Utils.g_module.APPNAME + conf.env.PRIVATELIBDIR = '%s/%s' % (conf.env.LIBDIR, Utils.g_module.APPNAME) conf.env.RPATH_ON_INSTALL_PRIVATE = ( not Options.options.disable_rpath_private_install) else: -- cgit