actually catch the SYSTEM_FONTS variable this time
This commit is contained in:
parent
8045d32608
commit
86e2fb3f31
1 changed files with 4 additions and 1 deletions
|
@ -29,7 +29,10 @@ LIBDIR_SCHEMA = env['LIBDIR_SCHEMA']
|
||||||
version = env['MAPNIK_VERSION_STRING']
|
version = env['MAPNIK_VERSION_STRING']
|
||||||
mapnik_libname = 'mapnik2'
|
mapnik_libname = 'mapnik2'
|
||||||
input_plugins = os.path.normpath(env['DESTDIR'] + '/' + env['PREFIX'] + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'])
|
input_plugins = os.path.normpath(env['DESTDIR'] + '/' + env['PREFIX'] + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'])
|
||||||
fonts = os.path.normpath(install_prefix + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'] + '/fonts')
|
if env['SYSTEM_FONTS']:
|
||||||
|
fonts = osm.path.normpath(env['SYSTEM_FONTS'])
|
||||||
|
else:
|
||||||
|
fonts = os.path.normpath(install_prefix + '/' + env['LIBDIR_SCHEMA'] + env['LIB_DIR_NAME'] + '/fonts')
|
||||||
|
|
||||||
|
|
||||||
filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
|
filesystem = 'boost_filesystem%s' % env['BOOST_APPEND']
|
||||||
|
|
Loading…
Add table
Reference in a new issue