ICU DATA: Default to icu-config if u_getDataDirectory fails
This commit is contained in:
parent
8876d13356
commit
765406f9a7
1 changed files with 9 additions and 2 deletions
|
@ -831,9 +831,16 @@ int main() {
|
|||
context.did_show_result=1
|
||||
if ret[0]:
|
||||
context.Result('u_getDataDirectory returned %s' % ret[1])
|
||||
return ret[1].strip()
|
||||
else:
|
||||
ret = call("icu-config --icudatadir", silent=True)
|
||||
if ret:
|
||||
context.Result('icu-config returned %s' % ret)
|
||||
return ret
|
||||
else:
|
||||
context.Result('Failed to detect (mapnik-config will have null value)')
|
||||
return ret[1].strip()
|
||||
return ''
|
||||
|
||||
|
||||
def CheckGdalData(context, silent=False):
|
||||
|
||||
|
|
Loading…
Reference in a new issue