From 4fda93bf3e29c6fea95b14e0a285cf8a7e30eed7 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 21 Jan 2014 21:34:43 -0800 Subject: [PATCH] finish support for disabling soname on linux --- src/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.py b/src/build.py index 91a7e9f69..db793c5a1 100644 --- a/src/build.py +++ b/src/build.py @@ -395,7 +395,7 @@ env['LIBMAPNIK_DEFINES'] = libmapnik_defines mapnik = None -if env['PLATFORM'] == 'Darwin': +if env['PLATFORM'] == 'Darwin' or not env['ENABLE_SONAME']: target_path = env['MAPNIK_LIB_BASE_DEST'] if 'uninstall' not in COMMAND_LINE_TARGETS: if env['LINKING'] == 'static':