aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Vogt <vogt@linux.vnet.ibm.com>2014-11-06 16:44:32 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2014-11-06 16:44:32 +0000
commit5c2648fb01c1476f9d71c8388089e0c5afa07091 (patch)
tree4d29f937c8f6e8dc359a378e1612e2fc2b13ffc3
parent0c6caaf8b4de07a4b33fe090d7620bd531724282 (diff)
downloadgcc-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
-rwxr-xr-xlibgo/mksysinfo.sh8
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 | \