Charles-François Natali <[email protected]> added the comment:
Hello Adi,
Thanks for your patch.
Just a detail:
"""
if platform == 'hp-ux11':
lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
"""
Wouldn't it be more robust as:
"""
if platform.startswith('hp-ux'):
lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32']
"""
So that it works with older and (potenttially) future HP-UX releases?
----------
nosy: +neologix
stage: -> patch review
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue14557>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com