summaryrefslogtreecommitdiff
path: root/libgo/mksysinfo.sh
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2018-03-05 18:44:44 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2018-03-05 18:44:44 +0000
commit14710257c19ff60d7c111d41a94f3c3f48ba8d84 (patch)
tree17d7634600493be3052a67a15e7d6c81c8c28297 /libgo/mksysinfo.sh
parentf7af3ad6372ccc17f9d3d43566298ac843adfd67 (diff)
downloadgcc-14710257c19ff60d7c111d41a94f3c3f48ba8d84.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 From-SVN: r258259
Diffstat (limited to 'libgo/mksysinfo.sh')
-rwxr-xr-xlibgo/mksysinfo.sh2
1 files changed, 1 insertions, 1 deletions
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