We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1524cad commit a5da8f5Copy full SHA for a5da8f5
setup.py
@@ -165,6 +165,11 @@ def get_output(*args, **kwargs):
165
# To support Heimdal on Debian, read the linker path.
166
if opt.startswith('-Wl,/'):
167
main_path = opt[4:] + "/"
168
+ if main_path == "":
169
+ for d in library_dirs:
170
+ if os.path.exists(os.path.join(d, main_lib)):
171
+ main_path = d
172
+ break
173
174
if main_lib is None:
175
raise Exception("Could not find main GSSAPI shared library. Please "
0 commit comments