From 5eb04969f877fa9e6b0b99438133e7f20d30d794 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 13 Sep 2015 18:03:43 +0200 Subject: [PATCH] setup.py: add the place where we link the lz4 header/lib on the darwin vagrant VM --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c68b9651b..2e5e04b50 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,7 @@ include_dirs.append(os.path.join(ssl_prefix, 'include')) library_dirs.append(os.path.join(ssl_prefix, 'lib')) -possible_lz4_prefixes = ['/usr', '/usr/local', '/usr/local/borg', '/opt/local'] +possible_lz4_prefixes = ['/usr', '/usr/local', '/usr/local/opt/lz4', '/usr/local/lz4', '/usr/local/borg', '/opt/local'] if os.environ.get('BORG_LZ4_PREFIX'): possible_openssl_prefixes.insert(0, os.environ.get('BORG_LZ4_PREFIX')) lz4_prefix = detect_lz4(possible_lz4_prefixes)