summaryrefslogtreecommitdiff
path: root/staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-04 00:02:00 +0000
committerroot <root@rshg054.dnsready.net>2012-07-04 00:02:00 +0000
commit298f654d4656dcc1e8d78c37dd77ae2ebfc1bf5f (patch)
tree9343bddcb82bf82a7188d512a151aa7fb7801479 /staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch
parent20bf19bd85f0a70a575491c17aa7354c1a8fd97d (diff)
Wed Jul 4 00:01:59 UTC 2012
Diffstat (limited to 'staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch')
-rw-r--r--staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch b/staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch
new file mode 100644
index 000000000..427efe8a6
--- /dev/null
+++ b/staging/gcc/gcc-4.7.1-libgo-mksysinfo.patch
@@ -0,0 +1,15 @@
+--- libgo/mksysinfo.sh 2012-06-29 14:23:30.684708901 +0200
++++ libgo/mksysinfo.sh 2012-06-29 14:23:20.782761973 +0200
+@@ -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 <bits/resource.h>.
+ 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/'`