1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-14 11:21:58 +02:00

Don't assume that the current host supports 64-bit integers.

This commit is contained in:
Paul Eggert
2005-02-21 07:22:49 +00:00
parent 17103c0976
commit 80cc962bd5

View File

@@ -7,6 +7,11 @@ if test "$VERBOSE" = yes; then
od --version
fi
od -t x8 /dev/null >/dev/null || {
echo >&2 "$0: 8-byte test skipped"
exit 77
}
pwd=`pwd`
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0