From de49623d4b3bc577694b1601dcdb2eb413692389 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 23 Sep 2010 01:32:43 -0700 Subject: s3-waf: fix LOCALEDIR usage. Guenther --- source3/build/dynconfig.py | 2 -- source3/build/wscript | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'source3/build') diff --git a/source3/build/dynconfig.py b/source3/build/dynconfig.py index 7382516e3e..d04fe3d30b 100644 --- a/source3/build/dynconfig.py +++ b/source3/build/dynconfig.py @@ -11,7 +11,6 @@ dir_options = { 'with-codepagedir' : [ '${PREFIX}/lib/samba', 'where to put codepages' ], 'with-privatedir' : [ '${PREFIX}/private', 'where to put smbpasswd' ], 'with-cachedir' : [ '${PREFIX}/var/locks', 'where to put temporary cache files' ], - 'with-localedir' : [ '${PREFIX}/share/locale', 'Where to put po files' ] } # list of cflags to use for dynconfig.c @@ -38,7 +37,6 @@ dyn_cflags = { 'NTP_SIGND_SOCKET_DIR' : '${NTP_SIGND_SOCKET_DIR}', 'CODEPAGEDIR' : '${CODEPAGEDIR}', 'CACHEDIR' : '${CACHEDIR}', - 'LOCALEDIR' : '${LOCALEDIR}', 'SMB_PASSWD_FILE' : '${PRIVATEDIR}/smbpasswd', } diff --git a/source3/build/wscript b/source3/build/wscript index 2cbcbe6de1..3b0c66a9f4 100644 --- a/source3/build/wscript +++ b/source3/build/wscript @@ -45,7 +45,8 @@ def build(bld): cflags=cflags) bld.SAMBA_SUBSYSTEM('LOCALE_DIR', '../localedir.c', - cflags=cflags) + cflags='-DLOCALEDIR=\"%s\"' % bld.env.LOCALEDIR) + def dynconfig_cflags(bld): '''work out the extra CFLAGS for dynconfig.c''' -- cgit