actually catch the SYSTEM_FONTS variable this time

This commit is contained in:
Dane Springmeyer 2010-11-16 23:50:51 +00:00
parent 8045d32608
commit 86e2fb3f31

View file

@ -29,7 +29,10 @@ LIBDIR_SCHEMA = env['LIBDIR_SCHEMA']
version = env['MAPNIK_VERSION_STRING']
mapnik_libname = 'mapnik2'
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']