Commit 1a985a56 by Ian Lance Taylor

mksysinfo: Only define PathMax if PATH_MAX is defined.

From-SVN: r186778
parent 3eab78f4
......@@ -275,8 +275,9 @@ grep '^const __PC' gen-sysinfo.go |
sed -e 's/^\(const \)__\(PC[^= ]*\)\(.*\)$/\1\2 = __\2/' >> ${OUT}
# The PATH_MAX constant.
grep '^const _PATH_MAX ' gen-sysinfo.go |
if grep '^const _PATH_MAX ' gen-sysinfo.go >/dev/null 2>&1; then
echo 'const PathMax = _PATH_MAX' >> ${OUT}
fi
# epoll constants.
grep '^const _EPOLL' gen-sysinfo.go |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment