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