summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2018-03-05 18:44:44 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2018-03-05 18:44:44 +0000
commit51bfbc8e06e3eee999c70edfdec0aa38258b0f5d (patch)
tree17d7634600493be3052a67a15e7d6c81c8c28297
parent3917fefa9da881c3e265f824c902a10ee52c6824 (diff)
downloadgcc-51bfbc8e06e3eee999c70edfdec0aa38258b0f5d.tar.gz
libgo: fix typo in mksysinfo.sh script
Fix a small typo in the mksysinfo.sh script (incorrect input file for a grep command). Reviewed-on: https://go-review.googlesource.com/98635 git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@258259 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/go/gofrontend/MERGE2
-rwxr-xr-xlibgo/mksysinfo.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE
index dee5f671184..386293981ef 100644
--- a/gcc/go/gofrontend/MERGE
+++ b/gcc/go/gofrontend/MERGE
@@ -1,4 +1,4 @@
-262d629b1592f681fef396166a671e46cdb31230
+3287064c24cbf0c50776cdb87a720d29130b4363
The first line of this file holds the git revision number of the last
merge done from the gofrontend repository.
diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh
index 6f7cba72494..1b40dbe73a7 100755
--- a/libgo/mksysinfo.sh
+++ b/libgo/mksysinfo.sh
@@ -1142,7 +1142,7 @@ grep '^const _RLIM_' gen-sysinfo.go |
sed -e 's/^\(const \)_\(RLIM_[^= ]*\)\(.*\)$/\1\2 = _\2/' >> ${OUT}
if test "${rlimit}" = "_rlimit64" && grep '^const _RLIM64_INFINITY ' gen-sysinfo.go > /dev/null 2>&1; then
echo 'const RLIM_INFINITY = _RLIM64_INFINITY' >> ${OUT}
-elif grep '^const _RLIM_INFINITY ' gen-sysinfo-go; then
+elif grep '^const _RLIM_INFINITY ' gen-sysinfo.go > /dev/null 2>&1; then
echo 'const RLIM_INFINITY = _RLIM_INFINITY' >> ${OUT}
fi