1From 47ede0950740e8919c28774840e77f223d5f3124 Mon Sep 17 00:00:00 2001 2From: Derek Straka <derek@asterius.io> 3Date: Sun, 11 Mar 2018 19:55:38 -0400 4Subject: [PATCH] py-scrypt: remove the hard coded include paths 5 6Upstream-Status: Pending 7 8Signed-off-by: Derek Straka <derek@asterius.io> 9--- 10 setup.py | 1 - 11 1 file changed, 1 deletion(-) 12 13diff --git a/setup.py b/setup.py 14index 419a982..3f1fe52 100644 15--- a/setup.py 16+++ b/setup.py 17@@ -26,7 +26,6 @@ if sys.platform.startswith('linux'): 18 ('_FILE_OFFSET_BITS', '64'), 19 ] 20 libraries = ['crypto', 'rt'] 21- includes = ['/usr/local/include', '/usr/include'] 22 CFLAGS.append('-O2') 23 elif sys.platform.startswith('win32') and os.environ.get('MSYSTEM'): 24 msys2_env = os.getenv('MSYSTEM') 25