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 ad9cc9d commit 140399eCopy full SHA for 140399e
litsupport/modules/hash.py
@@ -10,8 +10,8 @@ def compute(context):
10
return
11
executable = context.executable
12
try:
13
- # Darwin's and Solaris' "strip" don't support these arguments.
14
- if platform.system() != "Darwin" and platform.system() != "SunOS":
+ # AIX, z/OS, and Darwin's and Solaris' "strip" don't support these arguments.
+ if platform.system() != 'OS/390' and platform.system() != 'AIX' and platform.system() != "Darwin" and platform.system() != "SunOS":
15
stripped_executable = executable + ".stripped"
16
testplan.check_call(
17
[
0 commit comments