diff options
author | Dominik Vogt <vogt@linux.vnet.ibm.com> | 2014-11-06 16:44:32 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-11-06 16:44:32 +0000 |
commit | 5c2648fb01c1476f9d71c8388089e0c5afa07091 (patch) | |
tree | 4d29f937c8f6e8dc359a378e1612e2fc2b13ffc3 /libgo | |
parent | 0c6caaf8b4de07a4b33fe090d7620bd531724282 (diff) | |
download | gcc-5c2648fb01c1476f9d71c8388089e0c5afa07091.zip gcc-5c2648fb01c1476f9d71c8388089e0c5afa07091.tar.gz gcc-5c2648fb01c1476f9d71c8388089e0c5afa07091.tar.bz2 |
mksysinfo: Tolerate missing structures in upcase_fields.
2014-11-06 Dominik Vogt <vogt@linux.vnet.ibm.com>
* libgo/mksysinfo.sh: Tolerate missing structures.
From-SVN: r217194
Diffstat (limited to 'libgo')
-rwxr-xr-x | libgo/mksysinfo.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh index a174e64..ddfa8bb 100755 --- a/libgo/mksysinfo.sh +++ b/libgo/mksysinfo.sh @@ -475,9 +475,9 @@ if test "$regs" == ""; then regs=`grep '^type __user_regs_struct struct' gen-sysinfo.go || true` if test "$regs" != ""; then # Substructures of __user_regs_struct on s390 - upcase_fields "__user_psw_struct" "PtracePsw" >> ${OUT} - upcase_fields "__user_fpregs_struct" "PtraceFpregs" >> ${OUT} - upcase_fields "__user_per_struct" "PtracePer" >> ${OUT} + upcase_fields "__user_psw_struct" "PtracePsw" >> ${OUT} || true + upcase_fields "__user_fpregs_struct" "PtraceFpregs" >> ${OUT} || true + upcase_fields "__user_per_struct" "PtracePer" >> ${OUT} || true fi fi if test "$regs" != ""; then @@ -746,7 +746,7 @@ grep '^const _SCM_' gen-sysinfo.go | \ sed -e 's/^\(const \)_\(SCM_[^= ]*\)\(.*\)$/\1\2 = _\2/' >> ${OUT} # The ucred struct. -upcase_fields "_ucred" "Ucred" >> ${OUT} +upcase_fields "_ucred" "Ucred" >> ${OUT} || true # The ip_mreq struct. grep '^type _ip_mreq ' gen-sysinfo.go | \ |