mirror of
https://github.com/samba-team/samba.git
synced 2025-02-22 05:57:43 +03:00
s3-waf: fix LOCALEDIR usage.
Guenther
This commit is contained in:
parent
031dd8cc62
commit
de49623d4b
@ -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',
|
||||
}
|
||||
|
||||
|
@ -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'''
|
||||
|
Loading…
x
Reference in New Issue
Block a user