We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2f3ff commit 47cf5ceCopy full SHA for 47cf5ce
waflib/Utils.py
@@ -725,11 +725,8 @@ def get_registry_app_path(key, filename):
725
def lib64():
726
# default settings for /usr/lib
727
if os.sep == '/':
728
- is_64 = platform.architecture()[0] == '64bit'
729
- if os.path.exists('/usr/lib64') and not os.path.exists('/usr/lib32'):
730
- # redhat
731
- return '64' if is_64 else ''
732
- else:
733
- return '' if is_64 else '32'
+ if platform.architecture()[0] == '64bit':
+ if os.path.exists('/usr/lib64') and not os.path.exists('/usr/lib32'):
+ return '64'
734
return ''
735
0 commit comments