From 5ede5aa54eb41267399a109b86e3a0fd873f7583 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 9 Jul 2012 11:13:49 +0000 Subject: [PATCH] mksysinfo.sh: Fix handling of glibc 2.16 bits/resource.h. From Jakub Jelinek. From-SVN: r189372 --- libgo/mksysinfo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh index 6fe040398765..39553445d07a 100755 --- a/libgo/mksysinfo.sh +++ b/libgo/mksysinfo.sh @@ -522,10 +522,10 @@ grep '^const _DT_' gen-sysinfo.go | # The rusage struct. rusage=`grep '^type _rusage struct' gen-sysinfo.go` if test "$rusage" != ""; then - rusage=`echo $rusage | sed -e 's/type _rusage struct //' -e 's/[{}]//g'` - rusage=`echo $rusage | sed -e 's/^ *//'` # Remove anonymous unions from GNU/Linux . rusage=`echo $rusage | sed -e 's/Godump_[0-9]* struct {\([^}]*\)};/\1/g'` + rusage=`echo $rusage | sed -e 's/type _rusage struct //' -e 's/[{}]//g'` + rusage=`echo $rusage | sed -e 's/^ *//'` nrusage= while test -n "$rusage"; do field=`echo $rusage | sed -e 's/^\([^;]*\);.*$/\1/'`