summaryrefslogtreecommitdiff
path: root/libgo/mksysinfo.sh
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2019-09-10 20:32:20 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2019-09-10 20:32:20 +0000
commit4d7bfeec428c5bfd005bb6028221c22e5a8abcdf (patch)
tree5a67b4a8d1c283efbeb5818f6e5dc742ad06c69f /libgo/mksysinfo.sh
parenta1fc3891ebb77c1bdf68ce70c074eb907d21771a (diff)
re PR go/91621 (libgo/mksysinfo.sh: please avoid test ==)
PR go/91621 mksysinfo: change test == to test = Fixes https://gcc.gnu.org/PR91621 Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/194569 From-SVN: r275608
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 5f7b5f0c9b4..d616bd80977 100755
--- a/libgo/mksysinfo.sh
+++ b/libgo/mksysinfo.sh
@@ -1123,7 +1123,7 @@ grep '^const _FALLOC_' gen-sysinfo.go |
# Prefer largefile variant if available.
# CentOS 5 does not have f_flags, so pull from f_spare.
statfs=`grep '^type _statfs64 ' gen-sysinfo.go || true`
-if test "$statfs" == ""; then
+if test "$statfs" = ""; then
statfs=`grep '^type _statfs ' gen-sysinfo.go || true`
fi
if ! echo "$statfs" | grep f_flags; then