From 93d65a6e36c64cd5abba56b3be16d5edc828ea24 Mon Sep 17 00:00:00 2001 From: Robert Coup Date: Tue, 16 Aug 2011 03:18:24 +0000 Subject: [PATCH] Fix LIB_DIR_NAME handling (from broken nightlies) --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index d9a732783..0c2cb2f02 100644 --- a/SConstruct +++ b/SConstruct @@ -960,7 +960,7 @@ if not preconfigured: # previously a leading / was expected for LIB_DIR_NAME # now strip it to ensure expected behavior if env['LIB_DIR_NAME'].startswith(os.path.sep): - env['LIB_DIR_NAME'] = strip_first(['LIB_DIR_NAME'],os.path.sep) + env['LIB_DIR_NAME'] = strip_first(env['LIB_DIR_NAME'],os.path.sep) # base install location env['MAPNIK_LIB_BASE'] = os.path.join(env['PREFIX'],env['LIBDIR_SCHEMA'])