to systems without a real /dev/stderr in the file system or if not
using one of the three free awks. Use
print message | "cat >&2"
...
END { close("cat >&2") }
From Aharon Robbins.
+2000-03-25 Akim Demaille <akim@epita.fr>
+
+ * autoconf.sh (translate_awk): `> "/dev/stderr"' is not portable
+ to systems without a real /dev/stderr in the file system or if not
+ using one of the three free awks. Use
+ print message | "cat >&2"
+ ...
+ END { close("cat >&2") }
+ From Aharon Robbins.
+
2000-03-25 Akim Demaille <akim@epita.fr>
* autoheader.sh (checking completeness): Be ready to recognize
function error (message)
{
- print message >"/dev/stderr"
+ print message | "cat >&2"
exit 1
}
res = res char
}
print res
+ close("cat >&2")
}
EOF
# Extract both the m4 program and the m4 options from TRACES.
function error (message)
{
- print message >"/dev/stderr"
+ print message | "cat >&2"
exit 1
}
res = res char
}
print res
+ close("cat >&2")
}
EOF
# Extract both the m4 program and the m4 options from TRACES.
function error (message)
{
- print message >"/dev/stderr"
+ print message | "cat >&2"
exit 1
}
res = res char
}
print res
+ close("cat >&2")
}
EOF
# Extract both the m4 program and the m4 options from TRACES.