From b62dd43cc046e2bd6eb5fe3a58404f96493fee16 Mon Sep 17 00:00:00 2001 From: Neale Ferguson Date: Fri, 26 Apr 2019 09:04:06 -0400 Subject: [PATCH] Change s390 -> s390x --- checks/architecture/Jamroot.jam | 2 +- checks/architecture/s390.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/checks/architecture/Jamroot.jam b/checks/architecture/Jamroot.jam index b43ae600..0d3b5e7b 100644 --- a/checks/architecture/Jamroot.jam +++ b/checks/architecture/Jamroot.jam @@ -22,4 +22,4 @@ obj power : power.cpp ; obj riscv : riscv.cpp ; obj sparc : sparc.cpp ; obj x86 : x86.cpp ; -obj s390 : s390.cpp ; +obj s390x : s390x.cpp ; diff --git a/checks/architecture/s390.cpp b/checks/architecture/s390.cpp index 3d948653..a3630706 100644 --- a/checks/architecture/s390.cpp +++ b/checks/architecture/s390.cpp @@ -1,4 +1,4 @@ -// s390.cpp +// s390x.cpp // // Copyright (c) 2012 Steven Watanabe // @@ -6,6 +6,6 @@ // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) -#if !defined(__s390__) -#error "Not S390" +#if !defined(__s390x__) +#error "Not S390x" #endif