Skip to content

Commit

Permalink
Allow to build on s390_64
Browse files Browse the repository at this point in the history
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 <e29253@jp.ibm.com>
  • Loading branch information
inatatsu authored and normanmaurer committed Sep 27, 2019
1 parent ed14244 commit d8b1a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -768,10 +768,10 @@
</requireMavenVersion>
<requireProperty>
<regexMessage>
x86_64/AARCH64/PPCLE64 JDK must be used.
x86_64/AARCH64/PPCLE64/s390x_64 JDK must be used.
</regexMessage>
<property>os.detected.arch</property>
<regex>^(x86_64|aarch_64|ppcle_64)$</regex>
<regex>^(x86_64|aarch_64|ppcle_64|s390_64)$</regex>
</requireProperty>
</rules>
</configuration>
Expand Down

0 comments on commit d8b1a2d

Please sign in to comment.