From 4d5ab83fb317ef60bedfd867c83ebfa843708529 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 14 Sep 2012 08:55:01 -0700 Subject: [PATCH] add harfbuzz custom paths to environment --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 1eef0d683..fee066313 100644 --- a/SConstruct +++ b/SConstruct @@ -1061,7 +1061,7 @@ if not preconfigured: # Adding the required prerequisite library directories to the include path for # compiling and the library path for linking, respectively. - for required in ('PNG', 'JPEG', 'TIFF','PROJ','ICU', 'SQLITE', 'LTDL'): + for required in ('PNG', 'JPEG', 'TIFF','PROJ','ICU', 'SQLITE', 'LTDL', 'HB'): inc_path = env['%s_INCLUDES' % required] lib_path = env['%s_LIBS' % required] env.AppendUnique(CPPPATH = os.path.realpath(inc_path))