Skip to content

Commit d8b1a2d

Browse files
inatatsunormanmaurer
authored andcommittedSep 27, 2019
Allow to build on s390_64
Motivation: It is not possible to build Netty on an s390_64 platform. Modifications: Modify pom.xml so that s390_64 is acceptable as os.detected.arch. Result: Netty can be built on an s390_64 platform. Signed-off-by: Tatsushi Inagaki <[email protected]>
1 parent ed14244 commit d8b1a2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -768,10 +768,10 @@
768768
</requireMavenVersion>
769769
<requireProperty>
770770
<regexMessage>
771-
x86_64/AARCH64/PPCLE64 JDK must be used.
771+
x86_64/AARCH64/PPCLE64/s390x_64 JDK must be used.
772772
</regexMessage>
773773
<property>os.detected.arch</property>
774-
<regex>^(x86_64|aarch_64|ppcle_64)$</regex>
774+
<regex>^(x86_64|aarch_64|ppcle_64|s390_64)$</regex>
775775
</requireProperty>
776776
</rules>
777777
</configuration>

0 commit comments

Comments
 (0)
Please sign in to comment.